diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-18 12:50:32 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-18 13:29:17 (GMT) |
commit | 846608f2678b4bced696857b5ca45e11bc86aa2c (patch) | |
tree | e2a9bd3d2b1c9ec9064cb13bfc49744435a3b0db /Source | |
parent | a2f2aeee2f4d4af1f25f4a5b86bacb8a81a7dec4 (diff) | |
download | CMake-846608f2678b4bced696857b5ca45e11bc86aa2c.zip CMake-846608f2678b4bced696857b5ca45e11bc86aa2c.tar.gz CMake-846608f2678b4bced696857b5ca45e11bc86aa2c.tar.bz2 |
cmMakefile: Remove useless condition.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmMakefile.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 29e564f..2b4b896 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -573,10 +573,7 @@ bool cmMakefile::ReadListFile(const char* filename_in, // keep track of the current file being read if (filename) { - if(this->cmCurrentListFile != filename) - { - this->cmCurrentListFile = filename; - } + this->cmCurrentListFile = filename; } // Now read the input file |