diff options
author | KWSys Upstream <kwrobot@kitware.com> | 2016-03-29 18:28:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-29 18:29:42 (GMT) |
commit | 735c41ddb021a5ca0e8957591447acdb28a0f41b (patch) | |
tree | 82909b933a16bafcc760807a3481d04b1f5d6053 /RegularExpression.cxx | |
parent | cd4fef3041be85e1ec9139a91efa8a96f74707c5 (diff) | |
download | CMake-735c41ddb021a5ca0e8957591447acdb28a0f41b.zip CMake-735c41ddb021a5ca0e8957591447acdb28a0f41b.tar.gz CMake-735c41ddb021a5ca0e8957591447acdb28a0f41b.tar.bz2 |
KWSys 2016-03-29 (b51abb30)
Code extracted from:
http://public.kitware.com/KWSys.git
at commit b51abb307d3b40957cc508aa54d449d9b41f5537 (master).
Upstream Shortlog
-----------------
Ben Boeckel (1):
069a6b37 windows: check for _WIN32 rather than WIN32
Felix Geyer (1):
b51abb30 SystemInformation: Fix spelling typos in comments
Diffstat (limited to 'RegularExpression.cxx')
-rw-r--r-- | RegularExpression.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RegularExpression.cxx b/RegularExpression.cxx index 598e7ca..22593b4 100644 --- a/RegularExpression.cxx +++ b/RegularExpression.cxx @@ -376,7 +376,7 @@ bool RegularExpression::compile (const char* exp) { } // Allocate space. -//#ifndef WIN32 +//#ifndef _WIN32 if (this->program != 0) delete [] this->program; //#endif this->program = new char[regsize]; |