Skip to content

Commit 483db07

Browse files
committed
Clang format
1 parent 1b953bc commit 483db07

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Debug/debugger.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ void Debugger::dump(Module *m, bool full) const {
305305
}
306306

307307
dprintf(this->socket, "}\n\n");
308-
// fflush(stdout);
308+
// fflush(stdout);
309309
}
310310

311311
void Debugger::dumpBreakpoints(Module *m) const {
@@ -350,7 +350,7 @@ void Debugger::dumpCallstack(Module *m) const {
350350
}
351351

352352
void Debugger::dumpLocals(Module *m) const {
353-
// fflush(stdout);
353+
// fflush(stdout);
354354
int firstFunFramePtr = m->csp;
355355
while (m->callstack[firstFunFramePtr].block->block_type != 0) {
356356
firstFunFramePtr--;
@@ -360,7 +360,7 @@ void Debugger::dumpLocals(Module *m) const {
360360
}
361361
Frame *f = &m->callstack[firstFunFramePtr];
362362
dprintf(this->socket, R"({"count":%u,"locals":[)", 0);
363-
// fflush(stdout); // FIXME: this is needed for ESP to propery print
363+
// fflush(stdout); // FIXME: this is needed for ESP to propery print
364364
char _value_str[256];
365365
for (size_t i = 0; i < f->block->local_count; i++) {
366366
auto v = &m->stack[m->fp + i];
@@ -392,7 +392,7 @@ void Debugger::dumpLocals(Module *m) const {
392392
(i + 1 < f->block->local_count) ? "," : "");
393393
}
394394
dprintf(this->socket, "]}");
395-
// fflush(stdout);
395+
// fflush(stdout);
396396
}
397397

398398
/**

0 commit comments

Comments
 (0)