1
0
Fork 0
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:
Takashi Kokubun 2022-08-22 19:28:57 -07:00
parent c1ecc498e4
commit 545c2b0047
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -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 */