aboutsummaryrefslogtreecommitdiff
path: root/src/fbasicstring.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-07-31 12:38:42 +0000
committerMike Buland <eichlan@xagasoft.com>2009-07-31 12:38:42 +0000
commit4b6a91106a0033dc289a9663632aee776af878f0 (patch)
tree792be636f8b4461d49c225061176e09059ee8087 /src/fbasicstring.h
parent63c5f358e696298950dd03db431b92d4decd015a (diff)
downloadlibbu++-4b6a91106a0033dc289a9663632aee776af878f0.tar.gz
libbu++-4b6a91106a0033dc289a9663632aee776af878f0.tar.bz2
libbu++-4b6a91106a0033dc289a9663632aee776af878f0.tar.xz
libbu++-4b6a91106a0033dc289a9663632aee776af878f0.zip
Silly, the new g++ complained about some "style." Now it doesn't.
Diffstat (limited to 'src/fbasicstring.h')
-rw-r--r--src/fbasicstring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fbasicstring.h b/src/fbasicstring.h
index 6b681dd..b9e4871 100644
--- a/src/fbasicstring.h
+++ b/src/fbasicstring.h
@@ -1058,7 +1058,7 @@ namespace Bu
1058 l = begin(); 1058 l = begin();
1059 for(r=l; l;) 1059 for(r=l; l;)
1060 { 1060 {
1061 for( r = l; r && r != c; r++ ); 1061 for( r = l; r && r != c; r++ ) { }
1062 ret.append( MyType( l, r ) ); 1062 ret.append( MyType( l, r ) );
1063 l = r; 1063 l = r;
1064 l++; 1064 l++;