#ifndef UTIL_STRINGIFY_HPP #define UTIL_STRINGIFY_HPP #include #include namespace Util { template std::string stringify(a const& v) { auto os = std::ostringstream(); os << v; return os. str(); } } #endif /* !defined(UTIL_STRINGIFY_HPP) */