mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: new string interpolation in pure V (#10181)
This commit is contained in:
@ -164,7 +164,7 @@ fn f32_to_decimal_exact_int(i_mant u32, exp u32) (Dec32,bool) {
|
||||
return d, true
|
||||
}
|
||||
|
||||
pub fn f32_to_decimal(mant u32, exp u32) Dec32 {
|
||||
fn f32_to_decimal(mant u32, exp u32) Dec32 {
|
||||
mut e2 := 0
|
||||
mut m2 := u32(0)
|
||||
if exp == 0 {
|
||||
|
Reference in New Issue
Block a user