[llvm] r290226 - [Orc][RPC] Specialize RPCTypeName and SerializationTraits in the right namespace.
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 20 17:17:19 PST 2016
Author: lhames
Date: Tue Dec 20 19:17:19 2016
New Revision: 290226
URL: http://llvm.org/viewvc/llvm-project?rev=290226&view=rev
Log:
[Orc][RPC] Specialize RPCTypeName and SerializationTraits in the right namespace.
Modified:
llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
Modified: llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp?rev=290226&r1=290225&r2=290226&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp Tue Dec 20 19:17:19 2016
@@ -61,13 +61,13 @@ private:
class RPCFoo {};
template <>
-class RPCTypeName<RPCFoo> {
+class llvm::orc::rpc::RPCTypeName<RPCFoo> {
public:
static const char* getName() { return "RPCFoo"; }
};
template <>
-class SerializationTraits<QueueChannel, RPCFoo, RPCFoo> {
+class llvm::orc::rpc::SerializationTraits<QueueChannel, RPCFoo, RPCFoo> {
public:
static Error serialize(QueueChannel&, const RPCFoo&) {
return Error::success();
@@ -81,7 +81,7 @@ public:
class RPCBar {};
template <>
-class SerializationTraits<QueueChannel, RPCFoo, RPCBar> {
+class llvm::orc::rpc::SerializationTraits<QueueChannel, RPCFoo, RPCBar> {
public:
static Error serialize(QueueChannel&, const RPCBar&) {
return Error::success();
More information about the llvm-commits
mailing list