Skip to content

Commit

Permalink
Revert append() -> push_back() replacements from obviously wrong cases.
Browse files Browse the repository at this point in the history
  • Loading branch information
aarlt committed Feb 20, 2024
1 parent 6b3277d commit 01f8c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tools/fuzzer_common.cpp
Expand Up @@ -201,7 +201,7 @@ void FuzzerUtil::testConstantOptimizer(string const& _input, bool _quiet)
{
if (!_quiet)
cout << n << endl;
assembly.push_back(n);
assembly.append(n);
}
for (unsigned runs: {1u, 2u, 3u, 20u, 40u, 100u, 200u, 400u, 1000u})
{
Expand Down

0 comments on commit 01f8c7b

Please sign in to comment.