From 3769f85c80ffeb403c5310aa4a1e1914f90219a3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 2 Feb 2014 21:44:34 +0000 Subject: I can make it compile with gcc or LLVM, but not both yet. --- src/stable/string.cpp | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/stable/string.cpp') diff --git a/src/stable/string.cpp b/src/stable/string.cpp index 1ceaec1..bf3aac0 100644 --- a/src/stable/string.cpp +++ b/src/stable/string.cpp @@ -173,17 +173,6 @@ Bu::String::String( const Bu::String::const_iterator &s, append( s, e ); } -Bu::String::String( const Bu::String::iterator &s ) -{ - append( s ); -} - -Bu::String::String( const Bu::String::iterator &s, - const Bu::String::iterator &e ) -{ - append( s, e ); -} - Bu::String::~String() { } @@ -328,11 +317,6 @@ void Bu::String::append( const const_iterator &s, const const_iterator &e ) } } -void Bu::String::append( const iterator &s, const iterator &e ) -{ - append( const_iterator( s ), const_iterator( e ) ); -} - void Bu::String::prepend( const String & sData ) { prepend( sData.getStr(), sData.getSize() ); -- cgit v1.2.3