diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-07-31 12:38:42 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-07-31 12:38:42 +0000 |
commit | 4b6a91106a0033dc289a9663632aee776af878f0 (patch) | |
tree | 792be636f8b4461d49c225061176e09059ee8087 | |
parent | 63c5f358e696298950dd03db431b92d4decd015a (diff) | |
download | libbu++-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 '')
-rw-r--r-- | src/fbasicstring.h | 2 |
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++; |