diff options
author | Brad King <brad.king@kitware.com> | 2019-01-23 13:16:55 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-23 13:17:49 (GMT) |
commit | a7f5cd45e135dd51d67176fc40e2d769ac5f7db8 (patch) | |
tree | 677ad083ef4b1c9f7ca182ef6a29863841bf2169 /Source/cmComputeLinkInformation.h | |
parent | 22893baed1556420b93c4f3a62b4c450ac354040 (diff) | |
parent | 5a0784ddea62ee653a3a1199d4ff2140868d2c1d (diff) | |
download | CMake-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/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index db7eb96..61fcf03 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -9,6 +9,7 @@ #include <iosfwd> #include <set> #include <string> +#include <utility> #include <vector> class cmGeneratorTarget; @@ -31,9 +32,8 @@ public: struct Item { Item() {} - Item(std::string const& v, bool p, - cmGeneratorTarget const* target = nullptr) - : Value(v) + Item(std::string v, bool p, cmGeneratorTarget const* target = nullptr) + : Value(std::move(v)) , IsPath(p) , Target(target) { |