From 67094a4a9b013a9705bcbf49ec7e0e8ab744389c Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 9 Apr 2021 10:31:16 -0700 Subject: wasm-split: Update dylink section when growing table (#3791) --- src/wasm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wasm.h') 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; } -- cgit v1.2.3