summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobVerificationManager.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-23 13:16:55 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-01-23 13:17:49 (GMT)
commita7f5cd45e135dd51d67176fc40e2d769ac5f7db8 (patch)
tree677ad083ef4b1c9f7ca182ef6a29863841bf2169 /Source/cmGlobVerificationManager.h
parent22893baed1556420b93c4f3a62b4c450ac354040 (diff)
parent5a0784ddea62ee653a3a1199d4ff2140868d2c1d (diff)
downloadCMake-a7f5cd45e135dd51d67176fc40e2d769ac5f7db8.zip
CMake-a7f5cd45e135dd51d67176fc40e2d769ac5f7db8.tar.gz
CMake-a7f5cd45e135dd51d67176fc40e2d769ac5f7db8.tar.bz2
Merge topic 'tidy-pass-by-value'
5a0784ddea clang-tidy: Pass by value Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2836
Diffstat (limited to 'Source/cmGlobVerificationManager.h')
-rw-r--r--Source/cmGlobVerificationManager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobVerificationManager.h b/Source/cmGlobVerificationManager.h
index cdbd275..c293a76 100644
--- a/Source/cmGlobVerificationManager.h
+++ b/Source/cmGlobVerificationManager.h
@@ -55,13 +55,13 @@ private:
const bool FollowSymlinks;
const std::string Relative;
const std::string Expression;
- CacheEntryKey(const bool rec, const bool l, const bool s,
- const std::string& rel, const std::string& e)
+ CacheEntryKey(const bool rec, const bool l, const bool s, std::string rel,
+ std::string e)
: Recurse(rec)
, ListDirectories(l)
, FollowSymlinks(s)
- , Relative(rel)
- , Expression(e)
+ , Relative(std::move(rel))
+ , Expression(std::move(e))
{
}
bool operator<(const CacheEntryKey& r) const;