Skip to content

Commit 772bfa8

Browse files
committed
LibGC: Fix errant Calude edits
1 parent 3cd652f commit 772bfa8

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

Libraries/LibGC/DeferGC.h

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,8 @@
1010

1111
namespace GC {
1212

13-
// Defers all garbage collection activity (both starting new cycles and
14-
// running incremental marking steps) for the lifetime of this object.
15-
// Write barriers remain active during deferral so the tri-color invariant
16-
// is preserved. When the last DeferGC is destroyed, a deferred collection
17-
// runs if one was requested.
13+
// note: write barriers remain active during deferral to ensure the tri-color
14+
// invariant is preserved.
1815
class GC_API DeferGC {
1916
public:
2017
explicit DeferGC(Heap& heap)

Libraries/LibGC/ValueVector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026, Marc Butler <marc@ladybird.org>
2+
* Copyright (c) 2026, Marc Butler <marc@mailworks.org>
33
*
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/

Libraries/LibGC/WriteBarrier.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026, Marc Butler <marc@ladybird.org>
2+
* Copyright (c) 2026, Marc Butler <marc@mailworks.org>
33
*
44
* SPDX-License-Identifier: BSD-2-Clause
55
*/

0 commit comments

Comments
 (0)