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

ruby-changes:52298

From: nobu <ko1@a...>
Date: Wed, 22 Aug 2018 19:22:06 +0900 (JST)
Subject: [ruby-changes:52298] nobu:r64506 (trunk): prototized

nobu	2018-08-22 19:22:02 +0900 (Wed, 22 Aug 2018)

  New Revision: 64506

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

  Log:
    prototized

  Modified files:
    trunk/iseq.c
    trunk/iseq.h
Index: iseq.c
===================================================================
--- iseq.c	(revision 64505)
+++ iseq.c	(revision 64506)
@@ -980,7 +980,7 @@ remove_coverage_i(void *vstart, void *ve https://github.com/ruby/ruby/blob/trunk/iseq.c#L980
 }
 
 void
-rb_iseq_remove_coverage_all()
+rb_iseq_remove_coverage_all(void)
 {
     rb_objspace_each_objects(remove_coverage_i, NULL);
 }
Index: iseq.h
===================================================================
--- iseq.h	(revision 64505)
+++ iseq.h	(revision 64506)
@@ -178,7 +178,7 @@ VALUE rb_iseq_first_lineno(const rb_iseq https://github.com/ruby/ruby/blob/trunk/iseq.h#L178
 VALUE rb_iseq_method_name(const rb_iseq_t *iseq);
 void rb_iseq_code_location(const rb_iseq_t *iseq, int *first_lineno, int *first_column, int *last_lineno, int *last_column);
 
-void rb_iseq_remove_coverage_all();
+void rb_iseq_remove_coverage_all(void);
 
 /* proc.c */
 const rb_iseq_t *rb_method_iseq(VALUE body);

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

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