SyntaxFix
Write A Post
Hire A Developer
Questions
Well if you are fan of copy-paste, here it is:
#include <sstream> template <class T> inline std::string to_string (const T& t) { std::stringstream ss; ss << t; return ss.str(); }