Merge pull request #4283 from shuujii/reorder-members-in-struct-backtrace_location

Reorder members in `struct backtrace_location`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-02-18 17:24:48 +09:00
committed by GitHub
+1 -1
View File
@@ -17,8 +17,8 @@
struct backtrace_location {
int lineno;
const char *filename;
mrb_sym method_id;
const char *filename;
};
typedef void (*each_backtrace_func)(mrb_state*, struct backtrace_location*, void*);