Remove deprecated procedure

This commit is contained in:
gingerBill
2026-03-25 11:38:38 +00:00
parent 8f4b720e90
commit 7e9c14e6f3

View File

@@ -163,7 +163,7 @@ to_string :: proc(x: $T/Fixed($Backing, $Fraction_Width), allocator := context.a
}
@(private)
@(rodata, private)
_power_of_two_table := [129]string{
"0.5",
"1",
@@ -295,8 +295,3 @@ _power_of_two_table := [129]string{
"85070591730234615865843651857942052864",
"170141183460469231731687303715884105728",
}
@(deprecated="Use write instead")
append :: proc(dst: []byte, x: $T/Fixed($Backing, $Fraction_Width)) -> string {
return write(dst, x)
}