diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-18 11:19:34 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-18 11:22:51 (GMT) |
commit | e77c46664c384211294b6bdfef99c92212826cc6 (patch) | |
tree | 34da7029642aaafae8460f3ab19e73d53184f94d /Source/cmMakefile.cxx | |
parent | 8e7d3030773aae4b1784383abd6af4e5cec087c6 (diff) | |
download | CMake-e77c46664c384211294b6bdfef99c92212826cc6.zip CMake-e77c46664c384211294b6bdfef99c92212826cc6.tar.gz CMake-e77c46664c384211294b6bdfef99c92212826cc6.tar.bz2 |
cmMakefile: Remove obsolete condition.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index bd13a17..0f55017 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3436,10 +3436,6 @@ bool cmMakefile::IsLoopBlock() const std::string cmMakefile::GetExecutionFilePath() const { - if (this->ContextStack.empty()) - { - return std::string(); - } assert(this->StateSnapshot.IsValid()); return this->StateSnapshot.GetExecutionListFile(); } |