diff options
author | Brad King <brad.king@kitware.com> | 2002-11-06 21:59:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-11-06 21:59:09 (GMT) |
commit | 5417d02a61dfaed3377a017b2ffeaea66f8344ce (patch) | |
tree | bbc5a60a825884080f2d9798d1e646f7e2a60c39 /Source/cmRegularExpression.h | |
parent | 0930c14b0415b5c2503c8713e9bbac19e6fb0d4b (diff) | |
download | CMake-5417d02a61dfaed3377a017b2ffeaea66f8344ce.zip CMake-5417d02a61dfaed3377a017b2ffeaea66f8344ce.tar.gz CMake-5417d02a61dfaed3377a017b2ffeaea66f8344ce.tar.bz2 |
ENH: compile method now returns whether compilation succeeded.
Diffstat (limited to 'Source/cmRegularExpression.h')
-rw-r--r-- | Source/cmRegularExpression.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmRegularExpression.h b/Source/cmRegularExpression.h index c7717be..646deea 100644 --- a/Source/cmRegularExpression.h +++ b/Source/cmRegularExpression.h @@ -203,7 +203,7 @@ public: * Compile a regular expression into internal code * for later pattern matching. */ - void compile (char const*); + bool compile (char const*); /** * Matches the regular expression to the given string. |