diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-21 19:32:43 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-10-21 19:32:43 (GMT) |
commit | 569509f4bfbf44c67e237a01f957fdfe52223cfa (patch) | |
tree | fae8b2848d52b1f3ba8ed8f50f5e4135f170ee95 /Source/cmLoadCommandCommand.cxx | |
parent | 6c9b3b5c03b41842d3d79c1bd80691be7e5c6f89 (diff) | |
download | CMake-569509f4bfbf44c67e237a01f957fdfe52223cfa.zip CMake-569509f4bfbf44c67e237a01f957fdfe52223cfa.tar.gz CMake-569509f4bfbf44c67e237a01f957fdfe52223cfa.tar.bz2 |
Fix newly discovered clang-tidy issues
Clang-tidy reports some issues only from the currently compiled source
file and its associated header file. Separating the compilation of
commands exposed some clang-tidy issues that were not reported previously.
Fix them.
Diffstat (limited to 'Source/cmLoadCommandCommand.cxx')
-rw-r--r-- | Source/cmLoadCommandCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLoadCommandCommand.cxx b/Source/cmLoadCommandCommand.cxx index 12b3aa8..82d2ee3 100644 --- a/Source/cmLoadCommandCommand.cxx +++ b/Source/cmLoadCommandCommand.cxx @@ -64,7 +64,7 @@ public: void FinalPass() CM_OVERRIDE; bool HasFinalPass() const CM_OVERRIDE { - return this->info.FinalPass ? true : false; + return this->info.FinalPass != CM_NULLPTR; } /** |