summaryrefslogtreecommitdiff
path: root/src/pass.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-12-22 15:00:09 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-12-22 15:00:09 -0800
commit50dca4285a53bf5107e0f44e695a1085d6a55d00 (patch)
treec17e7e8e244089d67a8b9ef57a1a9d9634798528 /src/pass.h
parent7c39b5ee5dcaf2182d20ca1cb540bbff9adc4c0b (diff)
parentb6786d8187e79d60fcb24e3e6589444cf463128a (diff)
downloadbinaryen-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/pass.h')
-rw-r--r--src/pass.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pass.h b/src/pass.h
index c03db2368..d3f1d9edb 100644
--- a/src/pass.h
+++ b/src/pass.h
@@ -14,6 +14,9 @@
* limitations under the License.
*/
+#ifndef wasm_pass_h
+#define wasm_pass_h
+
#include <functional>
#include "wasm.h"
@@ -124,3 +127,5 @@ private:
};
} // namespace wasm
+
+#endif // wasm_pass_h