diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-01-21 16:15:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-01-22 18:03:04 (GMT) |
commit | 5a0784ddea62ee653a3a1199d4ff2140868d2c1d (patch) | |
tree | 0cbdb3658d8d5a270be900ddb829a4afe5cb4b32 /Source/CPack/cmCPackFreeBSDGenerator.cxx | |
parent | bcc9ea2b3d9cd3b882dbb2a23502b0392cb21d1b (diff) | |
download | CMake-5a0784ddea62ee653a3a1199d4ff2140868d2c1d.zip CMake-5a0784ddea62ee653a3a1199d4ff2140868d2c1d.tar.gz CMake-5a0784ddea62ee653a3a1199d4ff2140868d2c1d.tar.bz2 |
clang-tidy: Pass by value
Diffstat (limited to 'Source/CPack/cmCPackFreeBSDGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackFreeBSDGenerator.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/CPack/cmCPackFreeBSDGenerator.cxx b/Source/CPack/cmCPackFreeBSDGenerator.cxx index 1e6b118..0ff0054 100644 --- a/Source/CPack/cmCPackFreeBSDGenerator.cxx +++ b/Source/CPack/cmCPackFreeBSDGenerator.cxx @@ -17,6 +17,7 @@ #include <pkg.h> #include <algorithm> +#include <utility> cmCPackFreeBSDGenerator::cmCPackFreeBSDGenerator() : cmCPackArchiveGenerator(cmArchiveWrite::CompressXZ, "paxr") @@ -97,8 +98,8 @@ class ManifestKey public: std::string key; - ManifestKey(const std::string& k) - : key(k) + ManifestKey(std::string k) + : key(std::move(k)) { } @@ -115,9 +116,9 @@ class ManifestKeyValue : public ManifestKey public: std::string value; - ManifestKeyValue(const std::string& k, const std::string& v) + ManifestKeyValue(const std::string& k, std::string v) : ManifestKey(k) - , value(v) + , value(std::move(v)) { } |