diff options
author | Brad King <brad.king@kitware.com> | 2009-01-21 09:48:20 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-01-21 09:48:20 -0500 |
commit | bca1026250c5d2006a3829662b736660982e3a33 (patch) | |
tree | c403de025adbc273eb3ebe1f30b36ae849d72a43 /Source/cmFunctionCommand.cxx | |
parent | b8f5a934ecb83f0124be8485708d4d6d763682fd (diff) | |
download | cmake-bca1026250c5d2006a3829662b736660982e3a33.tar.gz |
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/cmFunctionCommand.cxx')
-rw-r--r-- | Source/cmFunctionCommand.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmFunctionCommand.cxx b/Source/cmFunctionCommand.cxx index f36eb7477e..c1ca8aa290 100644 --- a/Source/cmFunctionCommand.cxx +++ b/Source/cmFunctionCommand.cxx @@ -258,17 +258,6 @@ ShouldRemove(const cmListFileFunction& lff, cmMakefile &mf) return false; } -void cmFunctionFunctionBlocker:: -ScopeEnded(cmMakefile &mf) -{ - // functions should end with an EndFunction - cmSystemTools::Error( - "The end of a CMakeLists file was reached with a FUNCTION statement that " - "was not closed properly. Within the directory: ", - mf.GetCurrentDirectory(), " with function ", - this->Args[0].c_str()); -} - bool cmFunctionCommand ::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &) { |