diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-01-19 15:26:48 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-01-19 15:26:48 -0800 |
commit | 22ed7f49494e6ecf6c431b40ab6961953c2e3a8b (patch) | |
tree | 3dcdcf45d2ec47a86073d9d946e7e3e319cbe695 /src/wasm-binary.h | |
parent | d3390ed43dbfb4834273b4296521f95b4d448654 (diff) | |
parent | 1021013aa7efdd6d071a8b053f87de846a6d30bd (diff) | |
download | binaryen-22ed7f49494e6ecf6c431b40ab6961953c2e3a8b.tar.gz binaryen-22ed7f49494e6ecf6c431b40ab6961953c2e3a8b.tar.bz2 binaryen-22ed7f49494e6ecf6c431b40ab6961953c2e3a8b.zip |
Merge pull request #103 from mbebenita/static-poly
Use LLVM style static polymorphism for AST Visitors
Diffstat (limited to 'src/wasm-binary.h')
-rw-r--r-- | src/wasm-binary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h index cebfa11ae..533a24fe3 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -341,7 +341,7 @@ int8_t binaryWasmType(WasmType type) { } } -class WasmBinaryWriter : public WasmVisitor<void> { +class WasmBinaryWriter : public WasmVisitor<WasmBinaryWriter, void> { Module* wasm; BufferWithRandomAccess& o; bool debug; |