Merge pull request #4580 from shuujii/unify-type-of-line-number-to-uint16_t

Unify type of line number to `uint16_t`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-07-16 06:36:47 +09:00
committed by GitHub
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
#include <mruby/data.h>
struct backtrace_location {
int lineno;
int32_t lineno;
mrb_sym method_id;
const char *filename;
};