diff options
Diffstat (limited to 'Source/cmIfCommand.cxx')
-rw-r--r-- | Source/cmIfCommand.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index 119acc6..cf925df 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -17,6 +17,8 @@ #include "cmIfCommand.h" #include <stdlib.h> // required for atof +#include <cmsys/RegularExpression.hxx> + bool cmIfFunctionBlocker:: IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf) { @@ -217,7 +219,7 @@ bool cmIfCommand::IsTrue(const std::vector<std::string> &args, if (args.size() == 3 && (args[1] == "MATCHES")) { def = cmIfCommand::GetVariableOrString(args[0].c_str(), makefile); - cmRegularExpression regEntry(args[2].c_str()); + cmsys::RegularExpression regEntry(args[2].c_str()); // check for black line or comment if (!regEntry.find(def)) |