]> git.mxchange.org Git - simgear.git/commitdiff
Back out convertToLowerCase function
authorTim Moore <timoore@redhat.com>
Wed, 30 Sep 2009 22:31:36 +0000 (00:31 +0200)
committerTim Moore <timoore@redhat.com>
Wed, 30 Sep 2009 22:31:36 +0000 (00:31 +0200)
It brought in an OSG dependency; we'll just use boost::to_lower_copy instead.

simgear/misc/strutils.cxx
simgear/misc/strutils.hxx

index e836a3c44cdbb327e9b239b2c3b8c739c09f1ddb..d33b0a9dcdbd3a72febcf0cf965b4ef46938c2f6 100644 (file)
@@ -25,8 +25,6 @@
 
 #include "strutils.hxx"
 
-#include <osgDB/FileNameUtils> // for convertToLowerCase
-
 using std::string;
 using std::vector;
 
@@ -185,12 +183,5 @@ namespace simgear {
            return do_strip( s, BOTHSTRIP );
        }
 
-  string convertToLowerCase(const string& str)
-  {
-    // proxy onto osgDB - easy to reimplement here, but let's avoid
-    // code duplication for the moment.
-    return osgDB::convertToLowerCase(str);
-  }
-
     } // end namespace strutils
 } // end namespace simgear
index 7c1753aba9fcf55964b0eda5a6a902eb27fcc3e2..162cdb280438f09b23992f9daa08265c91512d0f 100644 (file)
@@ -79,9 +79,6 @@ namespace simgear {
        split( const std::string& s,
               const char* sep = 0,
               int maxsplit = 0 );
-
-
-  std::string convertToLowerCase(const std::string& str);
   
   } // end namespace strutils
 } // end namespace simgear