tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 90a4dc6c5759cc7e9a3a59d0fc61caf198d2ad8b
parent c7382062ea10daa2c5c4254331b94d03f0ff1548
Author: Lando <lando@lando.test>
Date:   Thu,  9 Oct 2025 18:12:22 +0000

Bug 1992249: apply code formatting via Lando

# ignore-this-changeset

Diffstat:
Mjs/src/debugger/ExecutionTracer.cpp | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/js/src/debugger/ExecutionTracer.cpp b/js/src/debugger/ExecutionTracer.cpp @@ -668,7 +668,8 @@ void ValueSummaries::writeHeader(JS::ValueType type, uint8_t flags) { JS::ValueSummary header; header.type = type; header.flags = flags; - MOZ_ASSERT(*reinterpret_cast<uint8_t*>(&header) != JS::ObjectSummary::GETTER_SETTER_MAGIC); + MOZ_ASSERT(*reinterpret_cast<uint8_t*>(&header) != + JS::ObjectSummary::GETTER_SETTER_MAGIC); valueData_->writeBytes(reinterpret_cast<const uint8_t*>(&header), sizeof(header)); }