Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix macos build failures.
  • Loading branch information
jkoritzinsky committed Oct 29, 2021
commit 01a37df8ea4c69d2ab31147d7a67220473479027
8 changes: 4 additions & 4 deletions src/coreclr/vm/interoplibinterface_objc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ namespace
}

extern "C" BOOL QCALLTYPE ObjCMarshal_TryInitializeReferenceTracker(
_In_ BeginEndCallback beginEndCallback,
_In_ IsReferencedCallback isReferencedCallback,
_In_ EnteredFinalizationCallback trackedObjectEnteredFinalization)
_In_ ObjCMarshalNative::BeginEndCallback beginEndCallback,
_In_ ObjCMarshalNative::IsReferencedCallback isReferencedCallback,
_In_ ObjCMarshalNative::EnteredFinalizationCallback trackedObjectEnteredFinalization)
{
QCALL_CONTRACT;
_ASSERTE(beginEndCallback != NULL
Expand Down Expand Up @@ -154,7 +154,7 @@ namespace
}

extern "C" BOOL QCALLTYPE ObjCMarshal_TrySetGlobalMessageSendCallback(
_In_ MessageSendFunction msgSendFunction,
_In_ ObjCMarshalNative::MessageSendFunction msgSendFunction,
_In_ void* fptr)
{
QCALL_CONTRACT;
Expand Down