aboutsummaryrefslogtreecommitdiff
path: root/src/string.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-04-07 03:49:30 +0000
committerMike Buland <eichlan@xagasoft.com>2011-04-07 03:49:30 +0000
commit5de54062d8bf9bdfde17a02e4aef91341146162d (patch)
tree02dca607621cdefb14ef1e3596bc78dcbc6c8c24 /src/string.cpp
parentd37b4151d5422b164a02c3773c9ebe478d6d82da (diff)
downloadlibbu++-5de54062d8bf9bdfde17a02e4aef91341146162d.tar.gz
libbu++-5de54062d8bf9bdfde17a02e4aef91341146162d.tar.bz2
libbu++-5de54062d8bf9bdfde17a02e4aef91341146162d.tar.xz
libbu++-5de54062d8bf9bdfde17a02e4aef91341146162d.zip
I fixed a stupid typo in string, I don't know how it ever compiled. It also
builds on win32 again...
Diffstat (limited to '')
-rw-r--r--src/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.cpp b/src/string.cpp
index edc45f9..1a9018b 100644
--- a/src/string.cpp
+++ b/src/string.cpp
@@ -141,7 +141,7 @@ Bu::String::String( const char *pData, long nLength )
141 append( pData, nLength ); 141 append( pData, nLength );
142} 142}
143 143
144Bu::String::String( const Bu::String::String &rSrc ) : 144Bu::String::String( const Bu::String &rSrc ) :
145 Bu::SharedCore<Bu::String, Bu::StringCore>( rSrc ) 145 Bu::SharedCore<Bu::String, Bu::StringCore>( rSrc )
146{ 146{
147} 147}