suppress GCC's -Wmissing-attribute

I was not aware of this because I use clang these days.
This commit is contained in:
卜部昌平 2021-09-09 14:24:09 +09:00
parent 6522b51ce5
commit c39dd708b5
Notes: git 2021-09-10 20:01:02 +09:00
1 changed files with 2 additions and 0 deletions

View File

@ -553,6 +553,7 @@ VALUE rb_str_buf_append(VALUE dst, VALUE src);
/** @alias{rb_str_cat} */
VALUE rb_str_buf_cat(VALUE, const char*, long);
RBIMPL_ATTR_NONNULL(())
/** @alias{rb_str_cat_cstr} */
VALUE rb_str_buf_cat2(VALUE, const char*);
@ -888,6 +889,7 @@ RBIMPL_ATTR_NONNULL(())
*/
VALUE rb_str_cat_cstr(VALUE dst, const char *src);
RBIMPL_ATTR_NONNULL(())
/** @alias{rb_str_cat_cstr} */
VALUE rb_str_cat2(VALUE, const char*);