]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/container/hashtable.cpp
Replace custom string classes with std::string - gone forever version
[xonotic/netradiant.git] / libs / container / hashtable.cpp
index edcaff637bdca4b646ea8f21d5e6b65ef35f7d0d..5e49e0e8601832f89f4f19a183bddd73c88fba9e 100644 (file)
@@ -29,7 +29,7 @@ namespace ExampleHashTable
 {
 void testStuff(){
        // HashTable example
-       typedef HashTable<CopiedString, int, HashString> MyHashTable;
+       typedef HashTable<std::string, int, HashString> MyHashTable;
        MyHashTable hashtable;
        hashtable["bleh"] = 5;
        hashtable.insert( "blah", 17 );