aboutsummaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-12-17 14:41:43 -0500
committerDavid Robillard <d@drobilla.net>2021-12-17 14:41:43 -0500
commitc79f6007fa2d60d04f0f754d967fbfce6f09545e (patch)
tree9a5ab0072597ce35c9de2de72b1db0bd80a073c8 /bindings
parent7ce1f135a111310483709f5598037d215943de43 (diff)
downloadpugl-c79f6007fa2d60d04f0f754d967fbfce6f09545e.tar.gz
pugl-c79f6007fa2d60d04f0f754d967fbfce6f09545e.tar.bz2
pugl-c79f6007fa2d60d04f0f754d967fbfce6f09545e.zip
Remove redundant virtual qualifier
Diffstat (limited to 'bindings')
-rw-r--r--bindings/cpp/include/pugl/pugl.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/cpp/include/pugl/pugl.hpp b/bindings/cpp/include/pugl/pugl.hpp
index 9a6da4f..0c6065b 100644
--- a/bindings/cpp/include/pugl/pugl.hpp
+++ b/bindings/cpp/include/pugl/pugl.hpp
@@ -240,7 +240,7 @@ public:
: _msg{msg}
{}
- virtual const char* what() const noexcept override;
+ const char* what() const noexcept override;
private:
const char* _msg;