mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix an inconsistent include guard macro
I was thinking about making it internal/mjit.h, but didn't.
This commit is contained in:
parent
c1ecc498e4
commit
545c2b0047
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
#ifndef INTERNAL_MJIT_H
|
#ifndef MJIT_UNIT_H
|
||||||
#define INTERNAL_MJIT_H
|
#define MJIT_UNIT_H
|
||||||
|
|
||||||
#include "ccan/list/list.h"
|
#include "ccan/list/list.h"
|
||||||
|
|
||||||
|
@ -26,4 +26,4 @@ struct rb_mjit_unit {
|
||||||
unsigned int cc_entries_size; // ISEQ_BODY(iseq)->ci_size + ones of inlined iseqs
|
unsigned int cc_entries_size; // ISEQ_BODY(iseq)->ci_size + ones of inlined iseqs
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* INTERNAL_MJIT_H */
|
#endif /* MJIT_UNIT_H */
|
||||||
|
|
Loading…
Reference in a new issue