Skip to content

Commit

Permalink
Add a virtual destructor to Runner
Browse files Browse the repository at this point in the history
Built with `-Wdelete-abstract-non-virtual-dtor`
  • Loading branch information
drfloob authored Aug 5, 2024
1 parent 917c6a3 commit 488c7c4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions e2e-examples/gcs/benchmark/runner.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

class Runner {
public:
virtual ~Runner() = default;
virtual bool Run() = 0;
};

Expand Down

0 comments on commit 488c7c4

Please sign in to comment.