Commit 0725aacf authored by Jun Hiroe's avatar Jun Hiroe

Use boolean macro in mrb_range_initialize()

parent 13db4da2
...@@ -126,7 +126,7 @@ mrb_range_initialize(mrb_state *mrb, mrb_value range) ...@@ -126,7 +126,7 @@ mrb_range_initialize(mrb_state *mrb, mrb_value range)
n = mrb_get_args(mrb, "oo|b", &beg, &end, &exclusive); n = mrb_get_args(mrb, "oo|b", &beg, &end, &exclusive);
if (n != 3) { if (n != 3) {
exclusive = 0; exclusive = FALSE;
} }
/* Ranges are immutable, so that they should be initialized only once. */ /* Ranges are immutable, so that they should be initialized only once. */
range_init(mrb, range, beg, end, exclusive); range_init(mrb, range, beg, end, exclusive);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment