Skip to content

Commit 1f03693

Browse files
author
Bo Cupp
committed
Remove remaining __stdcall calling convention from IRecyclerVisitedObject implementations
1 parent 6e782df commit 1f03693

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/GCStress/RecyclerTestObject.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -364,20 +364,20 @@ class RecyclerVisitedObject : public RecyclerTestObject
364364
return true;
365365
}
366366

367-
virtual void __stdcall Trace(IRecyclerHeapMarkingContext* markContext) override
367+
virtual void Trace(IRecyclerHeapMarkingContext* markContext) override
368368
{
369369
VerifyCondition(type == AllocationType::TraceAndFinalized || type == AllocationType::TraceOnly);
370370
// Note that the pointers in the references arrary are technically tagged. However, this is ok
371371
// as the Mark that we're performing is an interior mark, which gets us to the right object(s).
372372
markContext->MarkObjects(reinterpret_cast<void**>(&references[0]), count, this);
373373
}
374374

375-
virtual void __stdcall Finalize(bool isShutdown) override
375+
virtual void Finalize(bool isShutdown) override
376376
{
377377
// Only types that request finalization should have Finalize called
378378
VerifyCondition(IsFinalizable());
379379
}
380-
virtual void __stdcall Dispose(bool isShutdown) override
380+
virtual void Dispose(bool isShutdown) override
381381
{
382382
// Only types that request finalization should have Finalize called
383383
VerifyCondition(IsFinalizable());

0 commit comments

Comments
 (0)