diff options
| author | Masaki Muranaka <[email protected]> | 2013-04-26 11:44:53 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2013-04-26 11:44:53 +0900 |
| commit | d4476109c4376ca7eccc9f6cb3a10e68ec623d78 (patch) | |
| tree | 24eb776a5228f0ba9df1ff63705b70817b8d9320 | |
| parent | cbcd39bae41499e323f4055964510a27712a518b (diff) | |
| download | mruby-d4476109c4376ca7eccc9f6cb3a10e68ec623d78.tar.gz mruby-d4476109c4376ca7eccc9f6cb3a10e68ec623d78.zip | |
Add a descrption of MRB_INT16.
| -rw-r--r-- | include/mrbconf.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h index 4e256384d..80aad11e7 100644 --- a/include/mrbconf.h +++ b/include/mrbconf.h @@ -14,7 +14,10 @@ /* add -DMRB_USE_FLOAT to use float instead of double for floating point numbers */ //#define MRB_USE_FLOAT -/* add -DMRB_INT64 to use 64bit integer for mrb_int */ +/* add -DMRB_INT16 to use 16bit integer for mrb_int; conflict with MRB_INT64 */ +//#define MRB_INT16 + +/* add -DMRB_INT64 to use 64bit integer for mrb_int; conflict with MRB_INT16 */ //#define MRB_INT64 /* represent mrb_value in boxed double; conflict with MRB_USE_FLOAT */ |
