From 01d998aafe12e1ff5a93037d5d730ecf0f205664 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Wed, 9 May 2018 06:55:11 +0000 Subject: type func(); is different from type func(void); If a function declarator includes no parameter list, that doesn't mean the function takes zero parameter. rb_ast_new here does take zero parameter, so it should be explicitly prototypes as (void). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.h b/node.h index 9a375619f1..c6004b8608 100644 --- a/node.h +++ b/node.h @@ -487,7 +487,7 @@ typedef struct rb_ast_struct { VALUE mark_ary; rb_ast_body_t body; } rb_ast_t; -rb_ast_t *rb_ast_new(); +rb_ast_t *rb_ast_new(void); void rb_ast_mark(rb_ast_t*); void rb_ast_dispose(rb_ast_t*); void rb_ast_free(rb_ast_t*); -- cgit v1.2.3