summaryrefslogtreecommitdiffstats
path: root/Source/cmELF.cxx
diff options
context:
space:
mode:
authorRegina Pfeifer <regina@mailbox.org>2018-11-19 17:10:40 (GMT)
committerBrad King <brad.king@kitware.com>2018-11-20 15:36:08 (GMT)
commit5731ec30f0596fefede4321e9883043aa7db60ba (patch)
treea9eb4745aac533e596391de8f58a9a7136f0a9f7 /Source/cmELF.cxx
parent1dc85a6652bc8255ff7a9ef39028a7df45e3007b (diff)
downloadCMake-5731ec30f0596fefede4321e9883043aa7db60ba.zip
CMake-5731ec30f0596fefede4321e9883043aa7db60ba.tar.gz
CMake-5731ec30f0596fefede4321e9883043aa7db60ba.tar.bz2
clang-tidy: fix warnings from version 7
Fix some warnings that are new since clang-tidy version 4, and update `.clang-tidy` to suppress the rest.
Diffstat (limited to 'Source/cmELF.cxx')
-rw-r--r--Source/cmELF.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx
index 0ccd68a..27f9131 100644
--- a/Source/cmELF.cxx
+++ b/Source/cmELF.cxx
@@ -684,7 +684,7 @@ cmELF::cmELF(const char* fname)
std::unique_ptr<cmsys::ifstream> fin(new cmsys::ifstream(fname));
// Quit now if the file could not be opened.
- if (!fin.get() || !*fin) {
+ if (!fin || !*fin) {
this->ErrorMessage = "Error opening input file.";
return;
}