From 720a20a26bbabbd7c6a785f3f69bba67c4ca081f Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Fri, 11 Nov 2016 22:50:16 +0000 Subject: [PATCH] [RPC] Add const qualifier to MemberFnWrapper to make buildbots happy. This is a temporary fix: The right solution is to make sure addHandler can support mutable lambdas. I'll add that in a follow-up patch. llvm-svn: 286661 --- llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h b/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h index 2ff27ef..043fb5f 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h @@ -527,7 +527,7 @@ public: using MethodT = RetT(ClassT::*)(ArgTs...); MemberFnWrapper(ClassT &Instance, MethodT Method) : Instance(Instance), Method(Method) {} - RetT operator()(ArgTs &&... Args) { + RetT operator()(ArgTs &&... Args) const { return (Instance.*Method)(std::move(Args)...); } private: -- 2.7.4