From c4bf7eb129885158bf351669fb23fda3ae142ad0 Mon Sep 17 00:00:00 2001 From: Aaron Jomy Date: Wed, 29 Jan 2025 12:27:41 +0100 Subject: [PATCH] No longer extern the `CreateInterpreter` API --- include/clang/Interpreter/CppInterOp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Interpreter/CppInterOp.h b/include/clang/Interpreter/CppInterOp.h index c301711d2..3d4f6a855 100644 --- a/include/clang/Interpreter/CppInterOp.h +++ b/include/clang/Interpreter/CppInterOp.h @@ -548,7 +548,7 @@ namespace Cpp { ///\param[in] Args - the list of arguments for interpreter constructor. ///\param[in] CPPINTEROP_EXTRA_INTERPRETER_ARGS - an env variable, if defined, /// adds additional arguments to the interpreter. - extern "C" CPPINTEROP_API TInterp_t + CPPINTEROP_API TInterp_t CreateInterpreter(const std::vector& Args = {}, const std::vector& GpuArgs = {});