diff options
author | Brad King <brad.king@kitware.com> | 2023-01-19 14:17:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-01-19 14:17:35 (GMT) |
commit | dae189fb09b0dabf92c3c4e30ba72896197589c2 (patch) | |
tree | 85ae70f268935bef5b582d30bbb7249887497139 /Source/kwsys/RegularExpression.hxx.in | |
parent | 35afae59137a31fb8f771469c04043e32a8f330b (diff) | |
parent | 4ac17cff4207646f58b473509b73991c94564d7e (diff) | |
download | CMake-dae189fb09b0dabf92c3c4e30ba72896197589c2.zip CMake-dae189fb09b0dabf92c3c4e30ba72896197589c2.tar.gz CMake-dae189fb09b0dabf92c3c4e30ba72896197589c2.tar.bz2 |
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream
* upstream-KWSys:
KWSys 2023-01-19 (be3c441e)
Diffstat (limited to 'Source/kwsys/RegularExpression.hxx.in')
-rw-r--r-- | Source/kwsys/RegularExpression.hxx.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/kwsys/RegularExpression.hxx.in b/Source/kwsys/RegularExpression.hxx.in index 2709cde..2cb7f5e 100644 --- a/Source/kwsys/RegularExpression.hxx.in +++ b/Source/kwsys/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; } |