summaryrefslogtreecommitdiff
path: root/src/wasm-traversal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-traversal.h')
-rw-r--r--src/wasm-traversal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm-traversal.h b/src/wasm-traversal.h
index 5a2debcdf..54fbef439 100644
--- a/src/wasm-traversal.h
+++ b/src/wasm-traversal.h
@@ -704,8 +704,8 @@ struct Walker : public VisitorType {
void setFunction(Function* func) { currFunction = func; }
private:
- Expression** replacep =
- nullptr; // the address of the current node, used to replace it
+ // the address of the current node, used to replace it
+ Expression** replacep = nullptr;
SmallVector<Task, 10> stack; // stack of tasks
Function* currFunction = nullptr; // current function being processed
Module* currModule = nullptr; // current module being processed