We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5df7e commit 63d1feaCopy full SHA for 63d1fea
src/if_ruby.c
@@ -506,7 +506,11 @@ SIGNED_VALUE rb_num2long_stub(VALUE x)
506
{
507
return dll_rb_num2long(x);
508
}
509
+# if defined(DYNAMIC_RUBY_VER) && DYNAMIC_RUBY_VER >= 26
510
+VALUE rb_int2big_stub(intptr_t x)
511
+# else
512
VALUE rb_int2big_stub(SIGNED_VALUE x)
513
+# endif
514
515
return dll_rb_int2big(x);
516
src/version.c
@@ -783,6 +783,8 @@ static char *(features[]) =
783
784
static int included_patches[] =
785
{ /* Add new patch number below this line */
786
+/**/
787
+ 871,
788
/**/
789
870,
790
0 commit comments