8000 iseq.h, method.h: fix include guards [ci skip] · documenting-ruby/ruby@4f46dd0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4f46dd0

Browse files
committed
iseq.h, method.h: fix include guards [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51898 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 9289515 commit 4f46dd0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

iseq.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
1010
**********************************************************************/
1111

12-
#ifndef RUBY_COMPILE_H
13-
#define RUBY_COMPILE_H
12+
#ifndef RUBY_ISEQ_H
13+
#define RUBY_ISEQ_H 1
1414

1515
static inline size_t
1616
rb_call_info_kw_arg_bytes(int keyword_len)
@@ -169,4 +169,4 @@ VALUE rb_iseq_defined_string(enum defined_type type);
169169

170170
RUBY_SYMBOL_EXPORT_END
171171

172-
#endif /* RUBY_COMPILE_H */
172+
#endif /* RUBY_ISEQ_H */

method.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
Copyright (C) 2009 Koichi Sasada
99
1010
**********************************************************************/
11-
#ifndef METHOD_H
12-
#define METHOD_H
11+
#ifndef RUBY_METHOD_H
12+
#define RUBY_METHOD_H 1
1313

1414
#include "internal.h"
1515

@@ -210,4 +210,4 @@ void rb_method_entry_copy(rb_method_entry_t *dst, const rb_method_entry_t *src);
210210

211211
void rb_scope_visibility_set(rb_method_visibility_t);
212212

213-
#endif /* METHOD_H */
213+
#endif /* RUBY_METHOD_H */

0 commit comments

Comments
 (0)
0