Use the standard to_string() functions for C++11 (#4279)
authorRogier-5 <rogier777@gmail.com>
Thu, 11 Aug 2016 17:22:40 +0000 (19:22 +0200)
committerest31 <est31@users.noreply.github.com>
Thu, 11 Aug 2016 17:22:40 +0000 (19:22 +0200)
commitb11720af459d44a553cb5d23ef776a632fb30a65
tree78618a26db2ee19e892961b73a26db66fd889e4e
parent35f47e5461042b3d190f8ea583aec2aa26f1c484
Use the standard to_string() functions for C++11 (#4279)

If compiling according to a C++ version before C++11, then define
std::to_string ourselves.

Add a to_wstring version as well

As std::to_string() for floating point types uses %.6f as floating
point format converter, instead of %G, it needs special care.

To preserve ftos() behavior (which is expected to use the %G format
converter), it no longer uses to_string().
src/client.cpp
src/util/string.h