diff options
author | Brad King <brad.king@kitware.com> | 2016-04-15 14:32:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-18 13:21:19 (GMT) |
commit | 0f96ef00cbe8dd82cee32f61f9da43e66e42f446 (patch) | |
tree | fa6281a32902474c86c410a992630ca9ef001381 /Source/cmake.h | |
parent | 563bf9dd8a207e04697a92d8bcd239f52400b355 (diff) | |
download | CMake-0f96ef00cbe8dd82cee32f61f9da43e66e42f446.zip CMake-0f96ef00cbe8dd82cee32f61f9da43e66e42f446.tar.gz CMake-0f96ef00cbe8dd82cee32f61f9da43e66e42f446.tar.bz2 |
Remove unused cmake::IssueMessage overload
All callers now pass a full backtrace so we do not need the alternative
that takes a cmListFileContext directly. Drop this overload to remove
the code duplication.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index 8496705..8644dda 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -358,9 +358,6 @@ class cmake void IssueMessage(cmake::MessageType t, std::string const& text, cmListFileBacktrace const& backtrace = cmListFileBacktrace(), bool force = false); - void IssueMessage(cmake::MessageType t, std::string const& text, - cmListFileContext const& lfc, - bool force = false); ///! run the --build option int Build(const std::string& dir, |