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"
7
7
8
8
// c.f. https://github.com/ruby/ruby/blob/master/include/ruby/internal/arithmetic/int.h
9
9
10
- // NUM2INT is alias to [RbNum2intInline ]
10
+ // NUM2INT is alias to [RbNum2IntInline ]
11
11
func NUM2INT (x VALUE ) int {
12
12
return RbNum2IntInline (x )
13
13
}
14
14
15
- // INT2NUM is alias to [RbInt2numInline ]
15
+ // INT2NUM is alias to [RbInt2NumInline ]
16
16
func INT2NUM (v int ) VALUE {
17
17
return RbInt2NumInline (v )
18
18
}
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ import "C"
7
7
8
8
// c.f. https://github.com/ruby/ruby/blob/master/include/ruby/internal/arithmetic/long.h
9
9
10
- // NUM2LONG is alias to [RbNum2long ]
10
+ // NUM2LONG is alias to [RbNum2Long ]
11
11
func NUM2LONG (num VALUE ) Long {
12
12
return RbNum2Long (num )
13
13
}
14
14
15
- // LONG2NUM is alias to [RbLong2numInline ]
15
+ // LONG2NUM is alias to [RbLong2NumInline ]
16
16
func LONG2NUM (v Long ) VALUE {
17
17
return RbLong2NumInline (v )
18
18
}
You can’t perform that action at this time.
0 commit comments