diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-22 15:00:09 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-22 15:00:09 -0800 |
commit | 50dca4285a53bf5107e0f44e695a1085d6a55d00 (patch) | |
tree | c17e7e8e244089d67a8b9ef57a1a9d9634798528 /src/wasm-interpreter.h | |
parent | 7c39b5ee5dcaf2182d20ca1cb540bbff9adc4c0b (diff) | |
parent | b6786d8187e79d60fcb24e3e6589444cf463128a (diff) | |
download | binaryen-50dca4285a53bf5107e0f44e695a1085d6a55d00.tar.gz binaryen-50dca4285a53bf5107e0f44e695a1085d6a55d00.tar.bz2 binaryen-50dca4285a53bf5107e0f44e695a1085d6a55d00.zip |
Merge pull request #30 from WebAssembly/include-guards
Fix / uniformize include guards
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index 185e920ca..97958b041 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -20,6 +20,9 @@ // people to read this code and understand WebAssembly semantics. // +#ifndef wasm_wasm_interpreter_h +#define wasm_wasm_interpreter_h + #include <limits.h> #include "wasm.h" @@ -782,3 +785,5 @@ private: }; } // namespace wasm + +#endif // wasm_wasm_interpreter_h |