[LLDB] Implement pure virtual method in MockConnection

I made GetReadObject pure virtual in the base class and forgot to add
the method to the mock class.
This commit is contained in:
Jonas Devlieghere 2019-11-13 15:37:24 -08:00
parent 364d1785a6
commit 33c3e0b96c
1 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,8 @@ public:
return dst_len;
};
lldb::IOObjectSP GetReadObject() { return lldb::IOObjectSP(); }
std::vector<std::string> *m_packets;
};