commit 4b62952df685c617010837dc8cda0fd05a37e241 parent 8fa8ff8aae337d463ee2e72aea6ab5f6ec2985bd Author: Lando <lando@lando.test> Date: Thu, 16 Oct 2025 14:06:43 +0000 Bug 1992249: apply code formatting via Lando # ignore-this-changeset Diffstat:
| M | js/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)); }