]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/shaderlib.h
Replace custom string classes with std::string - gone forever version
[xonotic/netradiant.git] / libs / shaderlib.h
index ee972437befeb934fbfb06c11862af6873d6329b..80afbe2f13e7a0b65ef093a495926a13fad86665 100644 (file)
@@ -45,7 +45,7 @@ inline bool shader_equal_prefix( const char* string, const char* prefix ){
 class shader_less_t
 {
 public:
-bool operator()( const CopiedString& shader, const CopiedString& other ) const {
+bool operator()( const std::string& shader, const std::string& other ) const {
        return shader_less( shader.c_str(), other.c_str() );
 }
 };