Skip to content
Snippets Groups Projects
Commit 58fd0d99 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Remove wildcardmatch(const std::string &w, const char *s);

parent 91b7b3a8
No related branches found
No related tags found
1 merge request!29M214003/develop
......@@ -198,12 +198,6 @@ wildcardmatch(const char *w, const char *s)
}
#endif
int
wildcardmatch(const std::string &pattern, const char *string)
{
return wildcardmatch(pattern.c_str(), string);
}
int
wildcardmatch(const std::string &pattern, const std::string &string)
{
......
......@@ -15,7 +15,6 @@ char *expand_filename(const char *args);
std::vector<std::string> expand_wild_cards(std::vector<std::string> argv);
int wildcardmatch(const char *w, const char *s);
int wildcardmatch(const std::string &w, const char *s);
int wildcardmatch(const std::string &w, const std::string &s);
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment