summaryrefslogtreecommitdiffhomepage
path: root/src/array.c
diff options
context:
space:
mode:
authorYukihiro Matz Matsumoto <[email protected]>2012-11-04 05:15:22 +0900
committerYukihiro Matz Matsumoto <[email protected]>2012-11-04 05:15:22 +0900
commit902dd6380317e73b7dc99b64e04a75ac47fa5db0 (patch)
tree6876096a92902761334793653fd38d8f932d11a9 /src/array.c
parente429905597bff1e0fefb426ef22d5b3ea80e76f5 (diff)
downloadmruby-902dd6380317e73b7dc99b64e04a75ac47fa5db0.tar.gz
mruby-902dd6380317e73b7dc99b64e04a75ac47fa5db0.zip
remove FL_XXX macros
Diffstat (limited to 'src/array.c')
-rw-r--r--src/array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/array.c b/src/array.c
index abe5d6379..a200de3aa 100644
--- a/src/array.c
+++ b/src/array.c
@@ -1067,7 +1067,7 @@ mrb_ary_equal(mrb_state *mrb, mrb_value ary1)
mrb_get_args(mrb, "o", &ary2);
if (mrb_obj_equal(mrb, ary1, ary2)) return mrb_true_value();
- if (SPECIAL_CONST_P(ary2)) return mrb_false_value();
+ if (mrb_special_const_p(ary2)) return mrb_false_value();
if (!mrb_array_p(ary2)) {
if (!mrb_respond_to(mrb, ary2, mrb_intern(mrb, "to_ary"))) {
return mrb_false_value();