summaryrefslogtreecommitdiffstats
path: root/Source/cmInstalledFile.cxx
diff options
context:
space:
mode:
authorMatthias Maennich <matthias@maennich.net>2017-09-19 14:19:14 (GMT)
committerBrad King <brad.king@kitware.com>2017-09-28 11:23:42 (GMT)
commit2033abff0dec29072ac070cb6fe1604e8c03f180 (patch)
tree494f28a1e19c405e5def2b5d5343fe75f26b65ad /Source/cmInstalledFile.cxx
parent79b8c3802a430577a83ead5b0baab7038a813116 (diff)
downloadCMake-2033abff0dec29072ac070cb6fe1604e8c03f180.zip
CMake-2033abff0dec29072ac070cb6fe1604e8c03f180.tar.gz
CMake-2033abff0dec29072ac070cb6fe1604e8c03f180.tar.bz2
Fix minor clang-tidy findings
Fix issues diagnosed by clang-tidy - modernize-use-bool-literals - misc-string-integer-assignment - performance-faster-string-find - readability-redundant-string-cstr - readability-delete-null-pointer Signed-off-by: Matthias Maennich <matthias@maennich.net>
Diffstat (limited to 'Source/cmInstalledFile.cxx')
-rw-r--r--Source/cmInstalledFile.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmInstalledFile.cxx b/Source/cmInstalledFile.cxx
index c8144aa..3ffeabd 100644
--- a/Source/cmInstalledFile.cxx
+++ b/Source/cmInstalledFile.cxx
@@ -16,9 +16,7 @@ cmInstalledFile::cmInstalledFile()
cmInstalledFile::~cmInstalledFile()
{
- if (NameExpression) {
- delete NameExpression;
- }
+ delete NameExpression;
}
cmInstalledFile::Property::Property()