[ox/std] Remove incomplete writeF32toa
All checks were successful
Build / build (push) Successful in 2m28s

This commit is contained in:
2024-05-08 23:43:12 -05:00
parent 331f721292
commit 74a8a7d751
4 changed files with 238 additions and 24 deletions

View File

@@ -26,16 +26,6 @@ static std::map<ox::StringView, ox::Error(*)()> tests = {
return OxError(0);
}
},
{
"ftoa",
[]() {
ox::Array<char, 10> buff;
ox::CharBuffWriter bw(buff);
oxAssert(ox::writeF32toa(5, bw), "ox::writeItoa returned Error");
oxExpect(ox::StringView(buff.data()), ox::StringView("5"));
return ox::Error{};
}
},
{
"itoa",
[]() {