[Orc] Remove the empty class definitions in RPCUtils.h in the hope of working

around MSVC's C2783 error.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257312 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lang Hames 2016-01-11 04:04:20 +00:00
parent 189e8f0b8a
commit 9705af5059

View File

@ -95,7 +95,7 @@ public:
};
private:
template <typename Proc> class CallHelper {};
template <typename Proc> class CallHelper;
template <ProcedureIdT ProcId, typename... ArgTs>
class CallHelper<Procedure<ProcId, ArgTs...>> {
@ -109,7 +109,7 @@ private:
}
};
template <typename Proc> class HandlerHelper {};
template <typename Proc> class HandlerHelper;
template <ProcedureIdT ProcId, typename... ArgTs>
class HandlerHelper<Procedure<ProcId, ArgTs...>> {