1
0
Fork 0

Spectre/Core/String: Adding to_string() for signed int.

This commit is contained in:
Henrik Hautakoski 2020-12-05 15:06:22 +01:00
parent c731cda1a2
commit 66a4011f4b
2 changed files with 9 additions and 0 deletions

View file

@ -10,6 +10,8 @@ namespace sp { namespace core
{
// Convertion functions from standard c/c++ types.
std::string to_string(int value);
std::string to_string(unsigned int value);
std::string to_string(float value);