| 24 | }; |
| 25 | |
| 26 | std::string to_pretty_string( int64_t value ) |
| 27 | { |
| 28 | std::stringstream ss; |
| 29 | ss.imbue( {std::locale(), new comma_numpunct} ); |
| 30 | ss << std::fixed << value; |
| 31 | return ss.str(); |
| 32 | } |
| 33 | |
| 34 | #ifdef USE_FC_STRING |
| 35 | string::string(const char* s, int l) :my(s,l){ } |
no test coverage detected