Skip to content

Commit

Permalink
Add missing override keyword in memtrace unit tests (#6979)
Browse files Browse the repository at this point in the history
My local compiler (clang 14.0.0) complained about a missing override
keyword in trace_interval_analysis_unit_tests.c; fixed here.
  • Loading branch information
derekbruening authored Sep 11, 2024
1 parent f28e7ed commit b7a1381
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class dummy_analysis_tool_t : public analysis_tool_t {
}
bool
finalize_interval_snapshots(
std::vector<interval_state_snapshot_t *> &interval_snapshots)
std::vector<interval_state_snapshot_t *> &interval_snapshots) override
{
if (saw_serial_generate_snapshot_) {
error_string_ = "Did not expect finalize_interval_snapshots call in serial "
Expand Down

0 comments on commit b7a1381

Please sign in to comment.