diff options
Diffstat (limited to 'RegularExpression.hxx.in')
-rw-r--r-- | RegularExpression.hxx.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/RegularExpression.hxx.in b/RegularExpression.hxx.in index 2709cde..2cb7f5e 100644 --- a/RegularExpression.hxx.in +++ b/RegularExpression.hxx.in @@ -456,9 +456,9 @@ inline RegularExpression::RegularExpression(const std::string& s) */ inline RegularExpression::~RegularExpression() { - //#ifndef _WIN32 + // #ifndef _WIN32 delete[] this->program; - //#endif + // #endif } /** @@ -556,9 +556,9 @@ inline bool RegularExpression::is_valid() const inline void RegularExpression::set_invalid() { - //#ifndef _WIN32 + // #ifndef _WIN32 delete[] this->program; - //#endif + // #endif this->program = nullptr; } |