File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -364,20 +364,20 @@ class RecyclerVisitedObject : public RecyclerTestObject
364
364
return true ;
365
365
}
366
366
367
- virtual void __stdcall Trace (IRecyclerHeapMarkingContext* markContext) override
367
+ virtual void Trace (IRecyclerHeapMarkingContext* markContext) override
368
368
{
369
369
VerifyCondition (type == AllocationType::TraceAndFinalized || type == AllocationType::TraceOnly);
370
370
// Note that the pointers in the references arrary are technically tagged. However, this is ok
371
371
// as the Mark that we're performing is an interior mark, which gets us to the right object(s).
372
372
markContext->MarkObjects (reinterpret_cast <void **>(&references[0 ]), count, this );
373
373
}
374
374
375
- virtual void __stdcall Finalize (bool isShutdown) override
375
+ virtual void Finalize (bool isShutdown) override
376
376
{
377
377
// Only types that request finalization should have Finalize called
378
378
VerifyCondition (IsFinalizable ());
379
379
}
380
- virtual void __stdcall Dispose (bool isShutdown) override
380
+ virtual void Dispose (bool isShutdown) override
381
381
{
382
382
// Only types that request finalization should have Finalize called
383
383
VerifyCondition (IsFinalizable ());
You can’t perform that action at this time.
0 commit comments