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/formatter.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/formatter.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/stable/formatter.cpp b/src/stable/formatter.cpp index 4cfcf98..26f6d01 100644 --- a/src/stable/formatter.cpp +++ b/src/stable/formatter.cpp | |||
@@ -349,12 +349,6 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const char *sStr ) | |||
349 | return f; | 349 | return f; |
350 | } | 350 | } |
351 | 351 | ||
352 | Bu::Formatter &Bu::operator<<( Bu::Formatter &f, char *sStr ) | ||
353 | { | ||
354 | f.writeAligned( sStr, strlen( sStr ) ); | ||
355 | return f; | ||
356 | } | ||
357 | |||
358 | Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::String &sStr ) | 352 | Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::String &sStr ) |
359 | { | 353 | { |
360 | f.writeAligned( sStr ); | 354 | f.writeAligned( sStr ); |