summaryrefslogtreecommitdiff
path: root/Source/cmGeneratorExpressionEvaluationFile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-07 19:42:13 +0200
committerStephen Kelly <steveire@gmail.com>2015-10-10 11:04:39 +0200
commit223d0efe55ff66f6ceb25ecdfbd1d915c76af548 (patch)
tree98d7c649c07079a7afe3a1b5a6f504074353f1b1 /Source/cmGeneratorExpressionEvaluationFile.cxx
parenta367416cec8297c5a567825217b933f4539a44e4 (diff)
downloadcmake-223d0efe55ff66f6ceb25ecdfbd1d915c76af548.tar.gz
Remove some needless GetMakefile() calls.
Diffstat (limited to 'Source/cmGeneratorExpressionEvaluationFile.cxx')
-rw-r--r--Source/cmGeneratorExpressionEvaluationFile.cxx2
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;
}