Add warning

This commit is contained in:
2025-12-25 16:23:34 +08:00
parent 110e15e7b2
commit 20ec866f2a
2 changed files with 9 additions and 1 deletions

View File

@@ -241,7 +241,7 @@ impl PsbValueFixed {
PsbNumber::Integer(n) => Some(*n),
PsbNumber::Double(n) if n.fract() == 0.0 => Some(*n as i64),
PsbNumber::Float(n) if n.fract() == 0.0 => Some(*n as i64),
_ => None
_ => None,
},
_ => None,
}