use uint8_t for mrb_bool instead of unsigned int; close #1222

This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-04-29 11:46:16 +09:00
parent 8890a992a6
commit ee14d37da4
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
#ifndef MRUBY_VALUE_H
#define MRUBY_VALUE_H
typedef unsigned int mrb_bool;
typedef uint8_t mrb_bool;
#ifndef MRB_NAN_BOXING