Move PCRE2 match block from member variable

This commit is contained in:
Martin Vierula
2022-05-20 06:58:31 -07:00
parent 770662c0da
commit 0362af4db4
5 changed files with 41 additions and 27 deletions

View File

@@ -85,7 +85,6 @@ class Regex {
private:
#if WITH_PCRE2
pcre2_code *m_pc;
pcre2_match_data *m_match_data;
#else
pcre *m_pc = NULL;
pcre_extra *m_pce = NULL;