before merge

This commit is contained in:
Pavel Lutskov
2019-01-28 14:59:10 +01:00
parent f10e9d3ca7
commit bf217b6ac6
7 changed files with 92 additions and 58 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _UTILS_HPP_
#define _UTILS_HPP_
#include <sstream>
namespace {
inline std::string int_to_str(int i) {
std::ostringstream ss;
ss << i;
return ss.str();
}
}
#endif