[ORC] Fix the RPC unit test for header changes in r281171.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281173 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2016-09-11 19:12:19 +00:00
parent d546df8daf
commit 1735568d2e

View File

@ -7,7 +7,7 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "llvm/ExecutionEngine/Orc/RPCChannel.h" #include "llvm/ExecutionEngine/Orc/RPCByteChannel.h"
#include "llvm/ExecutionEngine/Orc/RPCUtils.h" #include "llvm/ExecutionEngine/Orc/RPCUtils.h"
#include "gtest/gtest.h" #include "gtest/gtest.h"
@ -25,7 +25,7 @@ private:
std::mutex Lock; std::mutex Lock;
}; };
class QueueChannel : public RPCChannel { class QueueChannel : public RPCByteChannel {
public: public:
QueueChannel(Queue &InQueue, Queue &OutQueue) QueueChannel(Queue &InQueue, Queue &OutQueue)
: InQueue(InQueue), OutQueue(OutQueue) {} : InQueue(InQueue), OutQueue(OutQueue) {}