diff options
Diffstat (limited to 'src/asmjs/asm_v_wasm.cpp')
-rw-r--r-- | src/asmjs/asm_v_wasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asmjs/asm_v_wasm.cpp b/src/asmjs/asm_v_wasm.cpp index 14a7fbdae..648871100 100644 --- a/src/asmjs/asm_v_wasm.cpp +++ b/src/asmjs/asm_v_wasm.cpp @@ -53,7 +53,7 @@ char getSig(WasmType type) { } } -std::string getSig(FunctionType *type) { +std::string getSig(const FunctionType *type) { std::string ret; ret += getSig(type->result); for (auto param : type->params) { |