From 3dc9bc3a6cefa30c553c6ec21b1545db98e26b6d Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sat, 23 Nov 2024 23:48:24 +0100 Subject: Add float formatting --- asl/format.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'asl/format.cpp') diff --git a/asl/format.cpp b/asl/format.cpp index 461fc77..6a3e5de 100644 --- a/asl/format.cpp +++ b/asl/format.cpp @@ -79,16 +79,6 @@ void asl::AslFormat(Formatter& f, const char* str) f.write({str, asl::strlen(str)}); } -void asl::AslFormat(Formatter& f, float) -{ - f.write(""); // @Todo Float formatting -} - -void asl::AslFormat(Formatter& f, double) -{ - f.write(""); // @Todo Float formatting -} - void asl::AslFormat(Formatter& f, bool v) { if (v) -- cgit