diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-09-26 14:03:28 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-09-26 16:53:35 +0200 |
commit | 845744929e40dbdc81ed9c7df0152d58bbb28be6 (patch) | |
tree | 547a56ebab04ce4b544897944303c2480c71fba7 /src/buildtool/execution_api/bazel_msg | |
parent | 02a05d4f759dd72e8b20178b0ac048ccb0a2755e (diff) | |
download | justbuild-845744929e40dbdc81ed9c7df0152d58bbb28be6.tar.gz |
Fix automatic moves proposed by clang-tidy.
Enable performance-no-automatic-move check.
Diffstat (limited to 'src/buildtool/execution_api/bazel_msg')
-rw-r--r-- | src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp b/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp index 1992961d..58059156 100644 --- a/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp +++ b/src/buildtool/execution_api/bazel_msg/bazel_msg_factory.cpp @@ -305,7 +305,7 @@ auto BazelMsgFactory::CreateDirectoryDigestFromTree( return std::nullopt; } - auto const digest = bundle->blob.digest; + auto digest = bundle->blob.digest; try { if (not process_blob(std::move(bundle->blob))) { return std::nullopt; |