diff options
author | 2020-01-31 03:45:34 +0100 | |
---|---|---|
committer | 2020-01-30 21:45:34 -0500 | |
commit | 4a102057779ece1b11431ff0b7787249ce0ad3ad (patch) | |
tree | e4911a5cb1a4286dd1547213c4f5eaf993b6adf4 /src/osd/modules/debugger/debugwin.cpp | |
parent | 059243f68ec0c2e327a3105a9480f50e5e0b4abf (diff) |
fixed some modernize-use-equals-default clang-tidy warnings (nw) (#6237)
Diffstat (limited to 'src/osd/modules/debugger/debugwin.cpp')
-rw-r--r-- | src/osd/modules/debugger/debugwin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/debugwin.cpp b/src/osd/modules/debugger/debugwin.cpp index 975e7ba6bc6..2b1fb212ef0 100644 --- a/src/osd/modules/debugger/debugwin.cpp +++ b/src/osd/modules/debugger/debugwin.cpp @@ -44,7 +44,7 @@ public: { } - virtual ~debugger_windows() { } + virtual ~debugger_windows() = default; virtual int init(const osd_options &options) override { return 0; } virtual void exit() override; |