]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/textures.cpp
Replace custom string classes with std::string - gone forever version
[xonotic/netradiant.git] / radiant / textures.cpp
index b223e2ee1318a87c40d0b7ccbab788f13a72f1c1..47200afdacfd97fea0c6d30a72bc2010ff10d87a 100644 (file)
@@ -321,7 +321,7 @@ class TestHashtable
 {
 public:
 TestHashtable(){
-       HashTable<CopiedString, CopiedString, HashStringNoCase, StringEqualNoCase> strings;
+       HashTable<std::string, std::string, HashStringNoCase, StringEqualNoCase> strings;
        strings["Monkey"] = "bleh";
        strings["MonkeY"] = "blah";
 }
@@ -331,7 +331,7 @@ const TestHashtable g_testhashtable;
 
 #endif
 
-typedef std::pair<LoadImageCallback, CopiedString> TextureKey;
+typedef std::pair<LoadImageCallback, std::string> TextureKey;
 
 void qtexture_realise( qtexture_t& texture, const TextureKey& key ){
        texture.texture_number = 0;