aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RESearch.h
diff options
context:
space:
mode:
authorZufu Liu <unknown>2023-11-02 08:51:15 +1100
committerZufu Liu <unknown>2023-11-02 08:51:15 +1100
commite702dacda85f0976d1006d9634dc38b53fad1336 (patch)
tree76b1f6005d0a645f702fc2c750f3d7626bea3da0 /src/RESearch.h
parent4c06fe443f2dd9d6235c9cf95d38f7054cfd82b2 (diff)
downloadscintilla-mirror-e702dacda85f0976d1006d9634dc38b53fad1336.tar.gz
Feature [feature-requests:#1500] Remove match text retrieval from MatchOnLines
as it is redone in SubstituteByPosition. Replace RESearch::pat and RESearch::GrabMatches with retrieving matches as needed in SubstituteByPosition.
Diffstat (limited to 'src/RESearch.h')
-rw-r--r--src/RESearch.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/RESearch.h b/src/RESearch.h
index c142441ae..37f210e13 100644
--- a/src/RESearch.h
+++ b/src/RESearch.h
@@ -22,7 +22,6 @@ public:
explicit RESearch(CharClassify *charClassTable);
// No dynamic allocation so default copy constructor and assignment operator are OK.
void Clear();
- void GrabMatches(const CharacterIndexer &ci);
const char *Compile(const char *pattern, Sci::Position length, bool caseSensitive, bool posix) noexcept;
int Execute(const CharacterIndexer &ci, Sci::Position lp, Sci::Position endp);
@@ -32,7 +31,6 @@ public:
using MatchPositions = std::array<Sci::Position, MAXTAG>;
MatchPositions bopat;
MatchPositions eopat;
- std::string pat[MAXTAG];
private: