summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h
index 9aafb7425..8b60885e3 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -1170,7 +1170,7 @@ using BinaryLocation = uint32_t;
// Offsets are relative to the beginning of the code section, as in DWARF.
struct BinaryLocations {
struct Span {
- BinaryLocation start, end;
+ BinaryLocation start = 0, end = 0;
};
std::unordered_map<Expression*, Span> expressions;
std::unordered_map<Function*, Span> functions;