everything seems to work together as expected

(if not perfectly)
This commit is contained in:
Pavel Lutskov
2019-01-29 12:07:17 +01:00
parent 2d0441306a
commit b6e7ab8aa4
7 changed files with 71 additions and 43 deletions

View File

@@ -4,7 +4,7 @@
#include <sstream>
namespace {
inline std::string int_to_str(int i) {
template<typename T> inline std::string stuff_to_str(T i) {
std::ostringstream ss;
ss << i;
return ss.str();