File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ import "C"
77
88// c.f. https://github.com/ruby/ruby/blob/master/include/ruby/internal/arithmetic/int.h
99
10- // NUM2INT is alias to [RbNum2intInline ]
10+ // NUM2INT is alias to [RbNum2IntInline ]
1111func NUM2INT (x VALUE ) int {
1212 return RbNum2IntInline (x )
1313}
1414
15- // INT2NUM is alias to [RbInt2numInline ]
15+ // INT2NUM is alias to [RbInt2NumInline ]
1616func INT2NUM (v int ) VALUE {
1717 return RbInt2NumInline (v )
1818}
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ import "C"
77
88// c.f. https://github.com/ruby/ruby/blob/master/include/ruby/internal/arithmetic/long.h
99
10- // NUM2LONG is alias to [RbNum2long ]
10+ // NUM2LONG is alias to [RbNum2Long ]
1111func NUM2LONG (num VALUE ) Long {
1212 return RbNum2Long (num )
1313}
1414
15- // LONG2NUM is alias to [RbLong2numInline ]
15+ // LONG2NUM is alias to [RbLong2NumInline ]
1616func LONG2NUM (v Long ) VALUE {
1717 return RbLong2NumInline (v )
1818}
You can’t perform that action at this time.
0 commit comments