@@ -52,7 +52,7 @@
}
bool GenericPrinter::put(mozilla::Span<const char16_t> str) {
- for (char16_t c: str) {
+ for (char16_t c : str) {
if (!putChar(c)) {
return false;
}
@@ -245,7 +245,7 @@
return false;
}
- for (char16_t c: str) {
+ for (char16_t c : str) {
MOZ_ASSERT(IsAsciiPrintable(c));
*bp++ = char(c);
}
@@ -2308,9 +2308,7 @@
MOZ_CRASH("No binding");
}
-UniqueChars ExpressionDecompiler::getOutput() {
- return sprinter.release();
-}
+UniqueChars ExpressionDecompiler::getOutput() { return sprinter.release(); }
} // anonymous namespace