diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-03 07:42:41 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-03 07:42:41 +0900 |
| commit | 55a43c78ffb6a5e42177e98d72f91b3c53964cdc (patch) | |
| tree | 147757334abd2468138ff175ecdf106f26cc6668 | |
| parent | ae55e9e23e828570732ceb768a1872a238a24ca3 (diff) | |
| parent | 71319ac3350344d945567d2f3ae4b43266f6b857 (diff) | |
| download | mruby-55a43c78ffb6a5e42177e98d72f91b3c53964cdc.tar.gz mruby-55a43c78ffb6a5e42177e98d72f91b3c53964cdc.zip | |
Merge pull request #1785 from tmash06/fix_include_guard_style
fix include guard style.
| -rw-r--r-- | include/mruby/compile.h | 2 | ||||
| -rw-r--r-- | include/mruby/data.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/mruby/compile.h b/include/mruby/compile.h index c22f8079a..4f9c49191 100644 --- a/include/mruby/compile.h +++ b/include/mruby/compile.h @@ -5,7 +5,7 @@ */ #ifndef MRUBY_COMPILE_H -#define MRUBY_COMPILE_H 1 +#define MRUBY_COMPILE_H #if defined(__cplusplus) extern "C" { diff --git a/include/mruby/data.h b/include/mruby/data.h index f0420a0c6..8b1b5edb7 100644 --- a/include/mruby/data.h +++ b/include/mruby/data.h @@ -5,7 +5,7 @@ */ #ifndef MRUBY_DATA_H -#define MRUBY_DATA_H 1 +#define MRUBY_DATA_H #if defined(__cplusplus) extern "C" { |
