From 82ff3352e8df5352cd340bfa0cbdca06879bea41 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 29 Jun 2011 09:28:34 +0100 Subject: ditch unused compare --- cosv/source/strings/string.cxx | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/cosv/source/strings/string.cxx b/cosv/source/strings/string.cxx index 2de64f88..a7e11271 100644 --- a/cosv/source/strings/string.cxx +++ b/cosv/source/strings/string.cxx @@ -234,25 +234,6 @@ compare( const CharOrder_Table & i_rOrder, return int( i_rOrder(*it1) - i_rOrder(*it2) ); } -int -compare( const CharOrder_Table & i_rOrder, - const char * i_s1, - const char * i_s2, - csv::str::size i_nLength ) -{ - const char * sEnd = i_s1 + i_nLength; - - const char * it1 = i_s1; - const char * it2 = i_s2; - for ( ; i_rOrder(*it1) == i_rOrder(*it2) AND *it1 != '\0' AND it1 != sEnd; ++it1, ++it2 ) - {} - - if ( it1 != sEnd ) - return int( i_rOrder(*it1) - i_rOrder(*it2) ); - else - return 0; -} - } // namespace csv /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3