mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
prototized
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
664bf8bfc5
commit
c5f50296b4
2 changed files with 2 additions and 2 deletions
2
iseq.c
2
iseq.c
|
@ -980,7 +980,7 @@ remove_coverage_i(void *vstart, void *vend, size_t stride, void *data)
|
|||
}
|
||||
|
||||
void
|
||||
rb_iseq_remove_coverage_all()
|
||||
rb_iseq_remove_coverage_all(void)
|
||||
{
|
||||
rb_objspace_each_objects(remove_coverage_i, NULL);
|
||||
}
|
||||
|
|
2
iseq.h
2
iseq.h
|
@ -178,7 +178,7 @@ VALUE rb_iseq_first_lineno(const rb_iseq_t *iseq);
|
|||
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);
|
||||
|
|
Loading…
Add table
Reference in a new issue