From 76d8443e8249f77f01c8ccc41e966827f076280f Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 26 Jul 2013 03:11:47 +0000 Subject: Removed an incorrect formatter << operator, and corrected a const_iterator vs iterator issue in Bu::String. --- src/stable/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stable/string.cpp') 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 { if( core->nLength == 0 ) return const_iterator( NULL, 0 ); - return iterator( core->pFirst, 0 ); + return const_iterator( core->pFirst, 0 ); } Bu::String::iterator Bu::String::end() -- cgit v1.2.3