| 187 | } |
| 188 | |
| 189 | std::string |
| 190 | StringUtils::int2str(int i) |
| 191 | { |
| 192 | ostringstream oss; |
| 193 | oss << i; |
| 194 | return oss.str(); |
| 195 | } |
| 196 | |
| 197 | INT64 |
| 198 | StringUtils::str2longlong(const std::string &s) |
nothing calls this directly
no outgoing calls
no test coverage detected