forked from OSchip/llvm-project
[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:
parent
364d1785a6
commit
33c3e0b96c
|
@ -46,6 +46,8 @@ public:
|
|||
return dst_len;
|
||||
};
|
||||
|
||||
lldb::IOObjectSP GetReadObject() { return lldb::IOObjectSP(); }
|
||||
|
||||
std::vector<std::string> *m_packets;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue