ipfs-chromium
Loading...
Searching...
No Matches
stringify.h
1#ifndef IPFS_STRINGIFY_H_
2#define IPFS_STRINGIFY_H_
3
4#include <sstream>
5
6namespace ipfs {
7namespace {
8template <class T>
9std::string Stringify(T const& t) {
10 std::ostringstream oss;
11 oss << t;
12 return oss.str();
13}
14} // namespace
15} // namespace ipfs
16
17#endif // IPFS_STRINGIFY_H_