aboutsummaryrefslogtreecommitdiff
path: root/src/stable/formatter.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2013-07-26 03:11:47 +0000
committerMike Buland <eichlan@xagasoft.com>2013-07-26 03:11:47 +0000
commit76d8443e8249f77f01c8ccc41e966827f076280f (patch)
tree47c7740c08772314f0efbfb32e2a566ae7066919 /src/stable/formatter.cpp
parente97cac3fbab4a00faeb3ddec08846307670b9a0e (diff)
downloadlibbu++-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 'src/stable/formatter.cpp')
-rw-r--r--src/stable/formatter.cpp6
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
352Bu::Formatter &Bu::operator<<( Bu::Formatter &f, char *sStr )
353{
354 f.writeAligned( sStr, strlen( sStr ) );
355 return f;
356}
357
358Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::String &sStr ) 352Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::String &sStr )
359{ 353{
360 f.writeAligned( sStr ); 354 f.writeAligned( sStr );