diff options
author | Jemma Issroff <[email protected]> | 2023-08-23 10:30:05 -0700 |
---|---|---|
committer | git <[email protected]> | 2023-08-24 19:06:00 +0000 |
commit | 82e1434ef65cf1eead1e9828d12e2ed1a29de0fa (patch) | |
tree | e29f1eeeed257ddfbdd6a7aaa8cdac91b1146ca9 /yarp/yarp.h | |
parent | d81634d3ef21b5b8072934a1e00f431e42cbce8a (diff) |
[ruby/yarp] Pulled scope node out of config.yml, added necessary void returns
https://github.com/ruby/yarp/commit/926e6bdd88
Diffstat (limited to 'yarp/yarp.h')
-rw-r--r-- | yarp/yarp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yarp/yarp.h b/yarp/yarp.h index 8e723f414c..6b1f3b4ed7 100644 --- a/yarp/yarp.h +++ b/yarp/yarp.h @@ -31,7 +31,7 @@ void yp_serialize_content(yp_parser_t *parser, yp_node_t *node, yp_buffer_t *buf void yp_print_node(yp_parser_t *parser, yp_node_t *node); // Generate a scope node for a DefNode and ClassNode -void yp_get_scope_node(yp_node_t *node, yp_scope_node_t *dest); +void yp_scope_node_init(yp_node_t *node, yp_scope_node_t *dest); // The YARP version and the serialization format. YP_EXPORTED_FUNCTION const char * yp_version(void); |