diff options
author | Brad King <brad.king@kitware.com> | 2016-06-13 13:54:27 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-06-13 13:54:27 (GMT) |
commit | 4e66ca1952c0ba9dfba6050f83f67c90884c8492 (patch) | |
tree | ba64a2020360c326489b43e422a1edf55489880b /Source/cmMakefile.cxx | |
parent | 18e00ac7b918865c38a2e34ee584e18c1126c663 (diff) | |
parent | 23f87e8157770c56d3aa568f3d1318f9b9070364 (diff) | |
download | CMake-4e66ca1952c0ba9dfba6050f83f67c90884c8492.zip CMake-4e66ca1952c0ba9dfba6050f83f67c90884c8492.tar.gz CMake-4e66ca1952c0ba9dfba6050f83f67c90884c8492.tar.bz2 |
Merge topic 'fix-cmake-ISP-violation'
23f87e81 cmake: Remove force from IssueMessage API
54c65d5f cmake: Extract DisplayMessage API.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index c72c95c..c9192fd 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -105,8 +105,8 @@ cmMakefile::~cmMakefile() cmDeleteAll(this->EvaluationFiles); } -void cmMakefile::IssueMessage(cmake::MessageType t, std::string const& text, - bool force) const +void cmMakefile::IssueMessage(cmake::MessageType t, + std::string const& text) const { // Collect context information. if (!this->ExecutionStatusStack.empty()) { @@ -114,7 +114,7 @@ void cmMakefile::IssueMessage(cmake::MessageType t, std::string const& text, this->ExecutionStatusStack.back()->SetNestedError(true); } } - this->GetCMakeInstance()->IssueMessage(t, text, this->GetBacktrace(), force); + this->GetCMakeInstance()->IssueMessage(t, text, this->GetBacktrace()); } cmStringRange cmMakefile::GetIncludeDirectoriesEntries() const |