diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-14 17:26:04 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-14 17:26:04 +0000 |
commit | 16e251d74a8fbd4e1f540cb950e1b85697e0c566 (patch) | |
tree | 502b65d671e0991c3a42fcea29b8c85053e0e5c1 | |
parent | 3446072b3e42b0c947ac95f88025eb068f03f4f4 (diff) |
g++ is picky about default params with overloading
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6324 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | include/wildcard.h | 6 | ||||
-rw-r--r-- | src/wildcard.cpp | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/include/wildcard.h b/include/wildcard.h index 4bea2ff02..90660c6ef 100644 --- a/include/wildcard.h +++ b/include/wildcard.h @@ -13,5 +13,7 @@ #include "inspircd_config.h" -bool match(const char *str, const char *mask, bool use_cidr_match = false); -bool match(bool case_sensitive, const char *str, const char *mask, bool use_cidr_match = false); +bool match(const char *str, const char *mask); +bool match(const char *str, const char *mask, bool use_cidr_match); +bool match(bool case_sensitive, const char *str, const char *mask); +bool match(bool case_sensitive, const char *str, const char *mask, bool use_cidr_match); diff --git a/src/wildcard.cpp b/src/wildcard.cpp index 2243bc882..f888b68cf 100644 --- a/src/wildcard.cpp +++ b/src/wildcard.cpp @@ -140,3 +140,9 @@ bool match(bool case_sensitive, const char *str, const char *mask, bool use_cidr return true; return csmatch(str, mask); } + +bool match(bool case_sensitive, const char *str, const char *mask) +{ + return case_sensitive ? csmatch(str, mask) : match(str, mask); +} + |