summaryrefslogtreecommitdiff
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorRegina Pfeifer <regina@mailbox.org>2018-11-19 18:10:40 +0100
committerBrad King <brad.king@kitware.com>2018-11-20 10:36:08 -0500
commit5731ec30f0596fefede4321e9883043aa7db60ba (patch)
treea9eb4745aac533e596391de8f58a9a7136f0a9f7 /Source/cmGeneratorTarget.cxx
parent1dc85a6652bc8255ff7a9ef39028a7df45e3007b (diff)
downloadcmake-5731ec30f0596fefede4321e9883043aa7db60ba.tar.gz
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/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 0b28d1e8f3..80d81d5e48 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -4379,8 +4379,7 @@ const char* impliedValue<const char*>(const char* /*unused*/)
return "";
}
template <>
-std::string impliedValue<std::string>(
- std::string /*unused*/) // NOLINT(clang-tidy)
+std::string impliedValue<std::string>(std::string /*unused*/) // NOLINT(*)
{
return std::string();
}