diff options
Diffstat (limited to 'clang/lib/CodeGen/CGClass.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGClass.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGClass.cpp b/clang/lib/CodeGen/CGClass.cpp index 38fdb344ff9..b1096d267b6 100644 --- a/clang/lib/CodeGen/CGClass.cpp +++ b/clang/lib/CodeGen/CGClass.cpp @@ -1720,3 +1720,11 @@ CodeGenFunction::EmitCXXOperatorMemberCallee(const CXXOperatorCallExpr *E, return CGM.GetAddrOfFunction(MD, Ty); } + +void CodeGenFunction::EmitLambdaToBlockPointerBody(FunctionArgList &Args) { + CGM.ErrorUnsupported(CurFuncDecl, "lambda conversion to block"); +} + +void CodeGenFunction::EmitLambdaToFunctionPointerBody(FunctionArgList &Args) { + CGM.ErrorUnsupported(CurFuncDecl, "lambda conversion to function"); +} |