aboutsummaryrefslogtreecommitdiff
path: root/src/fstring.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-08-05 05:40:19 +0000
committerMike Buland <eichlan@xagasoft.com>2007-08-05 05:40:19 +0000
commit33aa0db4e61b3ecba720ac5cef90bc5f9085300d (patch)
tree01b7db24a4662ccc8c1abfa0f038de506839e154 /src/fstring.h
parentd3b44beef6e899b65f15a1c27bb76e255d8651d3 (diff)
downloadlibbu++-33aa0db4e61b3ecba720ac5cef90bc5f9085300d.tar.gz
libbu++-33aa0db4e61b3ecba720ac5cef90bc5f9085300d.tar.bz2
libbu++-33aa0db4e61b3ecba720ac5cef90bc5f9085300d.tar.xz
libbu++-33aa0db4e61b3ecba720ac5cef90bc5f9085300d.zip
Bu::Fstring doesn't give that stupid return warning anymore.
Diffstat (limited to 'src/fstring.h')
-rw-r--r--src/fstring.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fstring.h b/src/fstring.h
index 4dee537..9565527 100644
--- a/src/fstring.h
+++ b/src/fstring.h
@@ -52,6 +52,7 @@ namespace Bu
52 pFirst( NULL ), 52 pFirst( NULL ),
53 pLast( NULL ) 53 pLast( NULL )
54 { 54 {
55 append("");
55 } 56 }
56 57
57 FBasicString( const chr *pData ) : 58 FBasicString( const chr *pData ) :
@@ -346,7 +347,7 @@ namespace Bu
346 } 347 }
347 //append( pData ); 348 //append( pData );
348 349
349 //return (*this); 350 return (*this);
350 } 351 }
351 352
352 /** 353 /**