summaryrefslogtreecommitdiffstats
path: root/Source/cmListFileCache.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-09-09 17:38:01 (GMT)
committerBrad King <brad.king@kitware.com>2019-09-09 17:51:23 (GMT)
commit175d8c4bf6505eeb02bb588527f3ff7b5eb143b9 (patch)
tree4c9730af3501122952e493c54e6ad4c73dc838cd /Source/cmListFileCache.cxx
parent7c5ec91301f31e7caff6524ab83b5bb5c614d5d7 (diff)
downloadCMake-175d8c4bf6505eeb02bb588527f3ff7b5eb143b9.zip
CMake-175d8c4bf6505eeb02bb588527f3ff7b5eb143b9.tar.gz
CMake-175d8c4bf6505eeb02bb588527f3ff7b5eb143b9.tar.bz2
clang-tidy: Resolve performance-unnecessary-value-param diagnostics
Fix diagnostics that appear on macOS with clang-tidy-8. Suppress cases where we intentionally take an argument by value to let the caller choose whether to copy or move.
Diffstat (limited to 'Source/cmListFileCache.cxx')
-rw-r--r--Source/cmListFileCache.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmListFileCache.cxx b/Source/cmListFileCache.cxx
index ff3ecd9..349d5e9 100644
--- a/Source/cmListFileCache.cxx
+++ b/Source/cmListFileCache.cxx
@@ -326,6 +326,7 @@ cmListFileBacktrace::cmListFileBacktrace(cmStateSnapshot const& snapshot)
{
}
+/* NOLINTNEXTLINE(performance-unnecessary-value-param) */
cmListFileBacktrace::cmListFileBacktrace(std::shared_ptr<Entry const> parent,
cmListFileContext const& lfc)
: TopEntry(std::make_shared<Entry const>(std::move(parent), lfc))