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.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/stable/string.h') diff --git a/src/stable/string.h b/src/stable/string.h index bd1fe6c..420f40c 100644 --- a/src/stable/string.h +++ b/src/stable/string.h @@ -561,16 +561,14 @@ namespace Bu public: String(); + String( const const_iterator &s ); + String( const const_iterator &s, const const_iterator &e ); String( const char *pData ); String( const char *pData, long nLength ); String( const String &rSrc ); String( const String &rSrc, long nLength ); String( const String &rSrc, long nStart, long nLength ); String( long nSize ); - String( const const_iterator &s ); - String( const const_iterator &s, const const_iterator &e ); - String( const iterator &s ); - String( const iterator &s, const iterator &e ); virtual ~String(); /** @@ -648,8 +646,6 @@ namespace Bu */ void append( const const_iterator &s, const const_iterator &e ); - void append( const iterator &s, const iterator &e ); - /** * Prepend another String to this one. *@param sData (String &) The String to prepend. -- cgit v1.2.3