diff options
Diffstat (limited to 'include/BRegex.h')
-rw-r--r-- | include/BRegex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/BRegex.h b/include/BRegex.h index 4d4f98f..ced5e25 100644 --- a/include/BRegex.h +++ b/include/BRegex.h @@ -29,7 +29,7 @@ class Regex : public Base { Regex(const String &, int = REG_EXTENDED, int = 0) throw (GeneralException); Regex(const Regex &); ~Regex(); - bool Match(const String &) const; + bool Match(const String &, int nmatch = 0, regmatch_t * = 0) const; String GetPattern() const; private: regex_t preg; |