mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
math.big: fix inner deprecated binary_str use (#18911)
This commit is contained in:
parent
09d743ac81
commit
f9906f3a9e
@ -803,7 +803,7 @@ pub fn (integer Integer) radix_str(radix u32) string {
|
|||||||
}
|
}
|
||||||
return match radix {
|
return match radix {
|
||||||
2 {
|
2 {
|
||||||
integer.binary_str()
|
integer.bin_str()
|
||||||
}
|
}
|
||||||
16 {
|
16 {
|
||||||
integer.hex()
|
integer.hex()
|
||||||
|
Loading…
Reference in New Issue
Block a user