aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/stable/formatter.cpp6
-rw-r--r--src/stable/formatter.h1
-rw-r--r--src/stable/string.cpp2
3 files changed, 1 insertions, 8 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 );
diff --git a/src/stable/formatter.h b/src/stable/formatter.h
index 2d1c379..46934b9 100644
--- a/src/stable/formatter.h
+++ b/src/stable/formatter.h
@@ -261,7 +261,6 @@ namespace Bu
261 Formatter &operator<<( Formatter &f, const Fmt &fmt ); 261 Formatter &operator<<( Formatter &f, const Fmt &fmt );
262 Formatter &operator<<( Formatter &f, Formatter::Special s ); 262 Formatter &operator<<( Formatter &f, Formatter::Special s );
263 Formatter &operator<<( Formatter &f, const char *sStr ); 263 Formatter &operator<<( Formatter &f, const char *sStr );
264 Formatter &operator<<( Formatter &f, char *sStr );
265 Formatter &operator<<( Formatter &f, const Bu::String &sStr ); 264 Formatter &operator<<( Formatter &f, const Bu::String &sStr );
266 Formatter &operator<<( Formatter &f, signed char c ); 265 Formatter &operator<<( Formatter &f, signed char c );
267 Formatter &operator<<( Formatter &f, char c ); 266 Formatter &operator<<( Formatter &f, char c );
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
1180Bu::String::iterator Bu::String::end() 1180Bu::String::iterator Bu::String::end()