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:
Ben Clayton 2023-12-11 16:51:26 +00:00
parent 869caba42c
commit bbde7fb4dc

View File

@ -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();