aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-09-11 19:12:19 +0000
committerLang Hames <lhames@gmail.com>2016-09-11 19:12:19 +0000
commit3e718e08181b857c56480a10d7a3324e5019a5cb (patch)
tree8e2bf05b6eeea636d434ca1d339b282487576fff /llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
parent1872096f1e2befed2a3be6617eddfb18a06f80d7 (diff)
downloadllvm-3e718e08181b857c56480a10d7a3324e5019a5cb.zip
llvm-3e718e08181b857c56480a10d7a3324e5019a5cb.tar.gz
llvm-3e718e08181b857c56480a10d7a3324e5019a5cb.tar.bz2
[ORC] Fix the RPC unit test for header changes in r281171.
llvm-svn: 281173
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
index babea5c..259a75a 100644
--- a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
@@ -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) {}