mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to 'int', possible loss of data
This commit is contained in:
committed by
Tomasz Dabrowski
parent
9c5db48d1f
commit
5ed76e381c
+1
-1
@@ -570,7 +570,7 @@ mrb_get_args(mrb_state *mrb, const char *format, ...)
|
||||
mrb_int i = 0;
|
||||
va_list ap;
|
||||
mrb_int argc = mrb->c->ci->argc;
|
||||
int arg_i = 0;
|
||||
mrb_int arg_i = 0;
|
||||
mrb_value *array_argv;
|
||||
mrb_bool opt = FALSE;
|
||||
mrb_bool opt_skip = TRUE;
|
||||
|
||||
Reference in New Issue
Block a user