mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Add "rb_" prefixes to toplevel enum definitions
... as per ko1's request.
This commit is contained in:
parent
e763b1118b
commit
8f7e188822
Notes:
git
2022-07-22 23:10:45 +09:00
7 changed files with 36 additions and 36 deletions
4
iseq.h
4
iseq.h
|
@ -253,7 +253,7 @@ struct iseq_insn_info_entry {
|
|||
* CATCH_TYPE_REDO, CATCH_TYPE_NEXT:
|
||||
* NULL.
|
||||
*/
|
||||
enum catch_type {
|
||||
enum rb_catch_type {
|
||||
CATCH_TYPE_RESCUE = INT2FIX(1),
|
||||
CATCH_TYPE_ENSURE = INT2FIX(2),
|
||||
CATCH_TYPE_RETRY = INT2FIX(3),
|
||||
|
@ -263,7 +263,7 @@ enum catch_type {
|
|||
};
|
||||
|
||||
struct iseq_catch_table_entry {
|
||||
enum catch_type type;
|
||||
enum rb_catch_type type;
|
||||
rb_iseq_t *iseq;
|
||||
|
||||
unsigned int start;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue