diff options
author | Brad King <brad.king@kitware.com> | 2009-01-21 14:48:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-01-21 14:48:20 (GMT) |
commit | bca1026250c5d2006a3829662b736660982e3a33 (patch) | |
tree | c403de025adbc273eb3ebe1f30b36ae849d72a43 /Source/cmWhileCommand.cxx | |
parent | b8f5a934ecb83f0124be8485708d4d6d763682fd (diff) | |
download | CMake-bca1026250c5d2006a3829662b736660982e3a33.zip CMake-bca1026250c5d2006a3829662b736660982e3a33.tar.gz CMake-bca1026250c5d2006a3829662b736660982e3a33.tar.bz2 |
ENH: Better error message for unclosed blocks
This centralizes construction of the error message for an unclosed
logical block (if, foreach, etc.). We record the line at which each
block is opened so it can be reported in the error message.
Diffstat (limited to 'Source/cmWhileCommand.cxx')
-rw-r--r-- | Source/cmWhileCommand.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmWhileCommand.cxx b/Source/cmWhileCommand.cxx index 61d5d85..b6d8e36 100644 --- a/Source/cmWhileCommand.cxx +++ b/Source/cmWhileCommand.cxx @@ -97,15 +97,6 @@ ShouldRemove(const cmListFileFunction& lff, cmMakefile& ) return false; } -void cmWhileFunctionBlocker:: -ScopeEnded(cmMakefile &mf) -{ - cmSystemTools::Error( - "The end of a CMakeLists file was reached with a WHILE statement that " - "was not closed properly. Within the directory: ", - mf.GetCurrentDirectory()); -} - bool cmWhileCommand ::InvokeInitialPass(const std::vector<cmListFileArgument>& args, cmExecutionStatus &) |