[前][次][番号順一覧][スレッド一覧]

ruby-changes:39817

From: nobu <ko1@a...>
Date: Sat, 19 Sep 2015 10:49:09 +0900 (JST)
Subject: [ruby-changes:39817] nobu:r51898 (trunk): iseq.h, method.h: fix include guards [ci skip]

nobu	2015-09-19 10:48:48 +0900 (Sat, 19 Sep 2015)

  New Revision: 51898

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=51898

  Log:
    iseq.h, method.h: fix include guards [ci skip]

  Modified files:
    trunk/iseq.h
    trunk/method.h
Index: method.h
===================================================================
--- method.h	(revision 51897)
+++ method.h	(revision 51898)
@@ -8,8 +8,8 @@ https://github.com/ruby/ruby/blob/trunk/method.h#L8
   Copyright (C) 2009 Koichi Sasada
 
 **********************************************************************/
-#ifndef METHOD_H
-#define METHOD_H
+#ifndef RUBY_METHOD_H
+#define RUBY_METHOD_H 1
 
 #include "internal.h"
 
@@ -210,4 +210,4 @@ void rb_method_entry_copy(rb_method_entr https://github.com/ruby/ruby/blob/trunk/method.h#L210
 
 void rb_scope_visibility_set(rb_method_visibility_t);
 
-#endif /* METHOD_H */
+#endif /* RUBY_METHOD_H */
Index: iseq.h
===================================================================
--- iseq.h	(revision 51897)
+++ iseq.h	(revision 51898)
@@ -9,8 +9,8 @@ https://github.com/ruby/ruby/blob/trunk/iseq.h#L9
 
 **********************************************************************/
 
-#ifndef RUBY_COMPILE_H
-#define RUBY_COMPILE_H
+#ifndef RUBY_ISEQ_H
+#define RUBY_ISEQ_H 1
 
 static inline size_t
 rb_call_info_kw_arg_bytes(int keyword_len)
@@ -169,4 +169,4 @@ VALUE rb_iseq_defined_string(enum define https://github.com/ruby/ruby/blob/trunk/iseq.h#L169
 
 RUBY_SYMBOL_EXPORT_END
 
-#endif /* RUBY_COMPILE_H */
+#endif /* RUBY_ISEQ_H */

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]