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 050240333..fb1396f19 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -55,7 +55,7 @@ struct Address {
return *this;
}
operator address64_t() const { return addr; }
- Address& operator++() {
+ Address& operator++(int) {
++addr;
return *this;
}