diff options
author | JF Bastien <jfb@chromium.org> | 2015-12-22 14:53:34 -0800 |
---|---|---|
committer | JF Bastien <jfb@chromium.org> | 2015-12-22 14:53:34 -0800 |
commit | b6786d8187e79d60fcb24e3e6589444cf463128a (patch) | |
tree | c17e7e8e244089d67a8b9ef57a1a9d9634798528 /src/parsing.h | |
parent | 7c39b5ee5dcaf2182d20ca1cb540bbff9adc4c0b (diff) | |
download | binaryen-b6786d8187e79d60fcb24e3e6589444cf463128a.tar.gz binaryen-b6786d8187e79d60fcb24e3e6589444cf463128a.tar.bz2 binaryen-b6786d8187e79d60fcb24e3e6589444cf463128a.zip |
Fix / uniformize include guards
Diffstat (limited to 'src/parsing.h')
-rw-r--r-- | src/parsing.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parsing.h b/src/parsing.h index 6d1b60c01..31099571b 100644 --- a/src/parsing.h +++ b/src/parsing.h @@ -14,6 +14,9 @@ * limitations under the License. */ +#ifndef wasm_parsing_h +#define wasm_parsing_h + #include <sstream> #include "wasm.h" @@ -165,3 +168,5 @@ Expression* parseConst(cashew::IString s, WasmType type, MixedArena& allocator) } // namespace wasm + +#endif // wasm_parsing_h |