From 9705af5059e4c3e86030ef7b530bd241abfbb4ec Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Mon, 11 Jan 2016 04:04:20 +0000 Subject: [PATCH 1/1] [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 --- include/llvm/ExecutionEngine/Orc/RPCUtils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/ExecutionEngine/Orc/RPCUtils.h b/include/llvm/ExecutionEngine/Orc/RPCUtils.h index d275f642308..465a464193e 100644 --- a/include/llvm/ExecutionEngine/Orc/RPCUtils.h +++ b/include/llvm/ExecutionEngine/Orc/RPCUtils.h @@ -95,7 +95,7 @@ public: }; private: - template class CallHelper {}; + template class CallHelper; template class CallHelper> { @@ -109,7 +109,7 @@ private: } }; - template class HandlerHelper {}; + template class HandlerHelper; template class HandlerHelper> { -- 2.34.1