[Orc][RPC] Specialize RPCTypeName and SerializationTraits in the right namespace.

llvm-svn: 290226
This commit is contained in:
Lang Hames 2016-12-21 01:17:19 +00:00
parent 1f5be4d5b6
commit bde7a3f57e
1 changed files with 3 additions and 3 deletions

View File

@ -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();