| 35 | |
| 36 | template<typename T> |
| 37 | inline std::string |
| 38 | string_cast( T const& t ) |
| 39 | { |
| 40 | std::ostringstream buff; |
| 41 | buff << t; |
| 42 | return buff.str(); |
| 43 | } |
| 44 | |
| 45 | //____________________________________________________________________________// |
| 46 |
no test coverage detected