Skip to content

Commit faaf681

Browse files
miladfarcaV8 LUCI CQ
authored and
V8 LUCI CQ
committed
cppgc: Fix compilation on gcc
Currently getting the following 2 errors: ``` error: reference to 'MarkingType' is ambiguous error: reference to 'SweepingType' is ambiguous ``` Change-Id: Ia50d1b5ea8af0fcc85acb9c0dc5cfae1956cec62 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3540624 Reviewed-by: Shu-yu Guo <[email protected]> Commit-Queue: Milad Farazmand <[email protected]> Cr-Commit-Position: refs/heads/main@{#79556}
1 parent 3c03e3f commit faaf681

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unittests/heap/cppgc/prefinalizer-unittest.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,8 @@ TEST_F(PrefinalizerTest, GCBeforePrefinalizerRegistration) {
412412
internal::Heap::From(GetHeap())->CollectGarbage(
413413
{internal::GarbageCollector::Config::CollectionType::kMajor,
414414
cppgc::Heap::StackState::kMayContainHeapPointers,
415-
Heap::MarkingType::kAtomic,
416-
Heap::SweepingType::kIncrementalAndConcurrent,
415+
cppgc::Heap::MarkingType::kAtomic,
416+
cppgc::Heap::SweepingType::kIncrementalAndConcurrent,
417417
internal::GarbageCollector::Config::FreeMemoryHandling::
418418
kDiscardWherePossible,
419419
internal::GarbageCollector::Config::IsForcedGC::kForced});

0 commit comments

Comments
 (0)