remove max_digit from mrb_flo_to_str()

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-02-16 08:26:39 +09:00
parent ffe541b503
commit 4b981adc58
2 changed files with 11 additions and 14 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ extern "C" {
#define FIXABLE(f) (POSFIXABLE(f) && NEGFIXABLE(f))
mrb_value mrb_flo_to_fixnum(mrb_state *mrb, mrb_value val);
mrb_value mrb_flo_to_str(mrb_state *mrb, mrb_value flo, int max_digit);
mrb_value mrb_flo_to_str(mrb_state *mrb, mrb_value flo);
mrb_value mrb_fixnum_to_str(mrb_state *mrb, mrb_value x, int base);