]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/wildcard.cpp
Updated for alpha11
[user/henk/code/inspircd.git] / src / wildcard.cpp
index 900f314ea3a264b2e36084ab9505178ce5a359c9..41070d14506c8f30fdae2f48902a09406760e4c7 100644 (file)
@@ -13,7 +13,7 @@ void Delete(char* str,int pos)
 
 void Insert(char* substr,char* str,int pos)
 {
-       string a = str;
+       std::string a = str;
        a.insert(pos,substr);
        strcpy(str,a.c_str());
 }