[llvm] r257312 - [Orc] Remove the empty class definitions in RPCUtils.h in the hope of working
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Sun Jan 10 20:04:20 PST 2016
Author: lhames
Date: Sun Jan 10 22:04:20 2016
New Revision: 257312
URL: http://llvm.org/viewvc/llvm-project?rev=257312&view=rev
Log:
[Orc] Remove the empty class definitions in RPCUtils.h in the hope of working
around MSVC's C2783 error.
Modified:
llvm/trunk/include/llvm/ExecutionEngine/Orc/RPCUtils.h
Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/RPCUtils.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/RPCUtils.h?rev=257312&r1=257311&r2=257312&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/RPCUtils.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/RPCUtils.h Sun Jan 10 22:04:20 2016
@@ -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...>> {
More information about the llvm-commits
mailing list