1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

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

llvm-svn: 281173
This commit is contained in:
Lang Hames 2016-09-11 19:12:19 +00:00
parent 701b7a130a
commit d0ecc84c5e

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 "gtest/gtest.h"
@ -25,7 +25,7 @@ private:
std::mutex Lock;
};
class QueueChannel : public RPCChannel {
class QueueChannel : public RPCByteChannel {
public:
QueueChannel(Queue &InQueue, Queue &OutQueue)
: InQueue(InQueue), OutQueue(OutQueue) {}