Commit 261d62d9 by Ben Clayton

Remove unnecessary virtual inheritance

Looks like a copypasta mistake
parent aeb66147
......@@ -25,7 +25,7 @@ namespace {
// SingleByteReader wraps a dap::Reader to only provide a single byte for each
// read() call, regardless of the number of bytes actually requested.
class SingleByteReader : public virtual dap::Reader {
class SingleByteReader : public dap::Reader {
public:
SingleByteReader(std::unique_ptr<dap::Reader>&& inner)
: inner(std::move(inner)) {}
......
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