summaryrefslogtreecommitdiff
path: root/src/wildcard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wildcard.cpp')
-rw-r--r--src/wildcard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wildcard.cpp b/src/wildcard.cpp
index 900f314ea..41070d145 100644
--- a/src/wildcard.cpp
+++ b/src/wildcard.cpp
@@ -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());
}