diff options
author | Mike Buland <eichlan@xagasoft.com> | 2013-07-26 03:11:47 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2013-07-26 03:11:47 +0000 |
commit | 76d8443e8249f77f01c8ccc41e966827f076280f (patch) | |
tree | 47c7740c08772314f0efbfb32e2a566ae7066919 /src/stable/string.cpp | |
parent | e97cac3fbab4a00faeb3ddec08846307670b9a0e (diff) | |
download | libbu++-76d8443e8249f77f01c8ccc41e966827f076280f.tar.gz libbu++-76d8443e8249f77f01c8ccc41e966827f076280f.tar.bz2 libbu++-76d8443e8249f77f01c8ccc41e966827f076280f.tar.xz libbu++-76d8443e8249f77f01c8ccc41e966827f076280f.zip |
Removed an incorrect formatter << operator, and corrected a const_iterator vs
iterator issue in Bu::String.
Diffstat (limited to '')
-rw-r--r-- | src/stable/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stable/string.cpp b/src/stable/string.cpp index 77d7c26..bf3aac0 100644 --- a/src/stable/string.cpp +++ b/src/stable/string.cpp | |||
@@ -1174,7 +1174,7 @@ Bu::String::const_iterator Bu::String::begin() const | |||
1174 | { | 1174 | { |
1175 | if( core->nLength == 0 ) | 1175 | if( core->nLength == 0 ) |
1176 | return const_iterator( NULL, 0 ); | 1176 | return const_iterator( NULL, 0 ); |
1177 | return iterator( core->pFirst, 0 ); | 1177 | return const_iterator( core->pFirst, 0 ); |
1178 | } | 1178 | } |
1179 | 1179 | ||
1180 | Bu::String::iterator Bu::String::end() | 1180 | Bu::String::iterator Bu::String::end() |