Add missing override
to ~Impl()
The other virtual methods are marked with `override`, so there's no good reason for the destructor to not have this too.
This commit is contained in:
parent
869caba42c
commit
bbde7fb4dc
@ -138,7 +138,7 @@ class Impl : public dap::Session {
|
|||||||
return send(s.dump());
|
return send(s.dump());
|
||||||
}
|
}
|
||||||
|
|
||||||
~Impl() {
|
~Impl() override {
|
||||||
inbox.close();
|
inbox.close();
|
||||||
reader.close();
|
reader.close();
|
||||||
writer.close();
|
writer.close();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user