1
0
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:
phoebe
2023-07-20 12:51:58 +02:00
committed by GitHub
parent 09d743ac81
commit f9906f3a9e

View File

@@ -803,7 +803,7 @@ pub fn (integer Integer) radix_str(radix u32) string {
}
return match radix {
2 {
integer.binary_str()
integer.bin_str()
}
16 {
integer.hex()