diff options
| author | Neil <nyamatongwe@gmail.com> | 2021-08-22 22:14:34 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2021-08-22 22:14:34 +1000 |
| commit | afbd611bed7f27d0790fc19b18318e3ef213dfd8 (patch) | |
| tree | 25f2007712e60e5062de4b007bf78c90f239d88c /src/RESearch.cxx | |
| parent | 6f709917a1134aaf55fc83d8a9f18a30b50efd89 (diff) | |
| download | scintilla-mirror-afbd611bed7f27d0790fc19b18318e3ef213dfd8.tar.gz | |
Follow rule-of-zero / rule-of-5 where reasonable by removing standard operators
that are not needed.
Diffstat (limited to 'src/RESearch.cxx')
| -rw-r--r-- | src/RESearch.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/RESearch.cxx b/src/RESearch.cxx index 6d30e4c6b..15f3d6281 100644 --- a/src/RESearch.cxx +++ b/src/RESearch.cxx @@ -260,10 +260,6 @@ RESearch::RESearch(CharClassify *charClassTable) { Clear(); } -RESearch::~RESearch() { - Clear(); -} - void RESearch::Clear() noexcept { for (int i = 0; i < MAXTAG; i++) { pat[i].clear(); |
