array.c: Remove unused rb_ary_verify function

This commit is contained in:
Jean Boussier 2024-12-05 08:39:04 +01:00
parent 811bc15c75
commit 5335b140ab
Notes: git 2024-12-05 08:16:52 +00:00

View File

@ -263,12 +263,6 @@ ary_verify_(VALUE ary, const char *file, int line)
return ary;
}
void
rb_ary_verify(VALUE ary)
{
ary_verify(ary);
}
#else
#define ary_verify(ary) ((void)0)
#endif