Skip to content

Commit 484c774

Browse files
author
Emery Conrad
committed
clang-format run
1 parent 3e1c91d commit 484c774

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

include/CppInterOp/CppInterOp.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,8 @@ CPPINTEROP_API bool IsStaticMethod(TCppConstFunction_t method);
560560
CPPINTEROP_API bool IsExplicit(TCppConstFunction_t method);
561561

562562
///\returns the address of the function given its potentially mangled name.
563-
CPPINTEROP_API TCppFuncAddr_t GetFunctionAddressFromMangledName(const char* mangled_name);
563+
CPPINTEROP_API TCppFuncAddr_t
564+
GetFunctionAddressFromMangledName(const char* mangled_name);
564565

565566
///\returns the address of the function given its function declaration.
566567
CPPINTEROP_API TCppFuncAddr_t GetFunctionAddress(TCppFunction_t method);

include/CppInterOp/Dispatch.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ extern "C" CPPINTEROP_API CppFnPtrTy CppGetProcAddress(const char* procname);
184184
DISPATCH_API(IsExplicit, decltype(&CppImpl::IsExplicit)) \
185185
DISPATCH_API(MakeFunctionCallable, \
186186
CppImpl::JitCall (*)(CppImpl::TCppConstFunction_t)) \
187-
DISPATCH_API(GetFunctionAddress, \
188-
decltype(&CppImpl::GetFunctionAddress)) \
187+
DISPATCH_API(GetFunctionAddress, decltype(&CppImpl::GetFunctionAddress)) \
189188
/*DISPATCH_API(API_name, fnptr_ty)*/
190189

191190
// TODO: implement overload that takes an existing opened DL handle

0 commit comments

Comments
 (0)