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

Function doubleToString

src/utils/stringutils.cpp:206–214  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204}
205
206const std::wstring doubleToString(double d)
207{
208 //not static for thread-safety.
209 wchar_t buffer[100];
210
211 swprintf(buffer, 100, L"%f", d);
212
213 return std::wstring(buffer);
214}
215
216const std::wstring floatToString(float f, int num_decimal_places)
217{

Callers 1

toStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected