summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wasm2asm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm2asm.h b/src/wasm2asm.h
index 7a760da26..ce9b99d0f 100644
--- a/src/wasm2asm.h
+++ b/src/wasm2asm.h
@@ -109,8 +109,8 @@ class Wasm2AsmBuilder {
public:
struct Flags {
- bool debug: 1;
- bool pedantic: 1;
+ bool debug = false;
+ bool pedantic = false;
};
Wasm2AsmBuilder(Flags f) : flags(f) {}