Commit 038eadba authored by Frank Ueberschar's avatar Frank Ueberschar

Remove virtual keyword from a derived function

parent f58cbda6
......@@ -47,7 +47,7 @@ namespace Async {
class BadAnyCast : public std::bad_cast {
public:
virtual const char* what() const noexcept override { return "Bad any cast"; }
const char* what() const noexcept override { return "Bad any cast"; }
virtual ~BadAnyCast() { }
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment