chore: Enable clang-tidy bugprone-move-forwarding-reference check (#6457)

This commit is contained in:
Alex Kremer
2026-03-04 17:03:27 +00:00
committed by GitHub
parent e39954d128
commit af97df5a63
2 changed files with 2 additions and 1 deletions

View File

@@ -556,7 +556,7 @@ struct MultiApiJson_test : beast::unit_test::suite
static_assert([](auto&& v) {
return !requires {
v.visitor(
std::move(v), // cannot bind rvalue
decltype(v){}, // cannot bind rvalue
1,
[](Json::Value&, auto) {});
};