MCPcopy Create free account
hub / github.com/VerySleepy/verysleepy / floatToString

Function floatToString

src/utils/stringutils.cpp:196–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194}
195
196const std::wstring floatToString(float f)
197{
198 //not static for thread-safety.
199 wchar_t buffer[100];
200
201 swprintf(buffer, 100, L"%.3f", (double)f);
202
203 return std::wstring(buffer);
204}
205
206const std::wstring doubleToString(double d)
207{

Callers 1

toStringFunction · 0.85

Calls 1

toStringFunction · 0.70

Tested by

no test coverage detected