diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 19:42:13 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-10 11:04:39 +0200 |
commit | 223d0efe55ff66f6ceb25ecdfbd1d915c76af548 (patch) | |
tree | 98d7c649c07079a7afe3a1b5a6f504074353f1b1 /Source/cmGeneratorExpressionEvaluationFile.cxx | |
parent | a367416cec8297c5a567825217b933f4539a44e4 (diff) | |
download | cmake-223d0efe55ff66f6ceb25ecdfbd1d915c76af548.tar.gz |
Remove some needless GetMakefile() calls.
Diffstat (limited to 'Source/cmGeneratorExpressionEvaluationFile.cxx')
-rw-r--r-- | Source/cmGeneratorExpressionEvaluationFile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorExpressionEvaluationFile.cxx b/Source/cmGeneratorExpressionEvaluationFile.cxx index e4d9f107e9..8ac5cbc1b9 100644 --- a/Source/cmGeneratorExpressionEvaluationFile.cxx +++ b/Source/cmGeneratorExpressionEvaluationFile.cxx @@ -139,7 +139,7 @@ void cmGeneratorExpressionEvaluationFile::Generate(cmLocalGenerator *lg) { std::ostringstream e; e << "Evaluation file \"" << this->Input << "\" cannot be read."; - lg->GetMakefile()->IssueMessage(cmake::FATAL_ERROR, e.str()); + lg->IssueMessage(cmake::FATAL_ERROR, e.str()); return; } |