Skip to content

Commit 1aaaaa0

Browse files
author
MarcoFalke
committed
fuzz: Drop unused workaround after Apple-Clang bump
1 parent fadad7a commit 1aaaaa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/fuzz/fuzz.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ auto& FuzzTargets()
7575

7676
void FuzzFrameworkRegisterTarget(std::string_view name, TypeTestOneInput target, FuzzTargetOptions opts)
7777
{
78-
const auto [it, ins]{FuzzTargets().try_emplace(name, FuzzTarget /* temporary can be dropped after Apple-Clang-16 ? */ {std::move(target), std::move(opts)})};
78+
const auto [it, ins]{FuzzTargets().try_emplace(name, std::move(target), std::move(opts))};
7979
Assert(ins);
8080
}
8181

0 commit comments

Comments
 (0)