diff options
author | Neil <nyamatongwe@gmail.com> | 2014-10-02 18:17:13 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-10-02 18:17:13 +1000 |
commit | 2603f1e2074b0f880886b533ffc47ecef4fd33f7 (patch) | |
tree | 53bfaff1eca31d0768f43d0c496c81b551230a2d /src/RESearch.h | |
parent | 8c42cc95ae3fbfdb8d4b7e8893c2fee283efe1a6 (diff) | |
download | scintilla-mirror-2603f1e2074b0f880886b533ffc47ecef4fd33f7.tar.gz |
Allow using C++11 <regex> for searches as a provisional feature.
Diffstat (limited to 'src/RESearch.h')
-rw-r--r-- | src/RESearch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RESearch.h b/src/RESearch.h index 38875a3f4..3a7f0e4d6 100644 --- a/src/RESearch.h +++ b/src/RESearch.h @@ -33,6 +33,7 @@ class RESearch { public: explicit RESearch(CharClassify *charClassTable); ~RESearch(); + void Clear(); void GrabMatches(CharacterIndexer &ci); const char *Compile(const char *pattern, int length, bool caseSensitive, bool posix); int Execute(CharacterIndexer &ci, int lp, int endp); @@ -46,7 +47,6 @@ public: std::string pat[MAXTAG]; private: - void Clear(); void ChSet(unsigned char c); void ChSetWithCase(unsigned char c, bool caseSensitive); int GetBackslashExpression(const char *pattern, int &incr); |