OSDN Git Service

[ORC] Fix the RPC unit test for header changes in r281171.
authorLang Hames <lhames@gmail.com>
Sun, 11 Sep 2016 19:12:19 +0000 (19:12 +0000)
committerLang Hames <lhames@gmail.com>
Sun, 11 Sep 2016 19:12:19 +0000 (19:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281173 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp

index babea5c..259a75a 100644 (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) {}