diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-11-23 23:48:24 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 3dc9bc3a6cefa30c553c6ec21b1545db98e26b6d (patch) | |
tree | 375698480c4f21c48f1f59fed4878a78468dd2a6 /asl/format.cpp | |
parent | a7ebfdedeee84bd01615ad62ac448adae12787db (diff) |
Add float formatting
Diffstat (limited to 'asl/format.cpp')
-rw-r--r-- | asl/format.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
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("<FLOAT>"); // @Todo Float formatting
-}
-
-void asl::AslFormat(Formatter& f, double)
-{
- f.write("<DOUBLE>"); // @Todo Float formatting
-}
-
void asl::AslFormat(Formatter& f, bool v)
{
if (v)
|