Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 12, 2024
1 parent 9f8c376 commit 4c5d5f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/C++/src/json.h
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ class Json : public Benchmark {
}

bool verify_result(std::any r) override {
auto* const result = std::any_cast<const JsonValue*>(r);
const auto* const result = std::any_cast<const JsonValue*>(r);
const bool doesVerify = has_expected_content(result);
delete result;
return doesVerify;
Expand Down

0 comments on commit 4c5d5f0

Please sign in to comment.