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/mixed_arena.h | |
parent | 7c39b5ee5dcaf2182d20ca1cb540bbff9adc4c0b (diff) | |
download | binaryen-b6786d8187e79d60fcb24e3e6589444cf463128a.tar.gz binaryen-b6786d8187e79d60fcb24e3e6589444cf463128a.tar.bz2 binaryen-b6786d8187e79d60fcb24e3e6589444cf463128a.zip |
Fix / uniformize include guards
Diffstat (limited to 'src/mixed_arena.h')
-rw-r--r-- | src/mixed_arena.h | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/src/mixed_arena.h b/src/mixed_arena.h index 83a8c6f52..82464d51e 100644 --- a/src/mixed_arena.h +++ b/src/mixed_arena.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef mixed_arena_h -#define mixed_arena_h +#ifndef wasm_mixed_arena_h +#define wasm_mixed_arena_h #include <vector> @@ -56,15 +56,4 @@ struct MixedArena { extern MixedArena globalAllocator; -#ifdef __wasm_h__ -namespace wasm { - -class AllocatingModule : public Module { -public: - MixedArena allocator; -}; - -} -#endif - -#endif // mixed_arena_h +#endif // wasm_mixed_arena_h |