| 18 | fc::string to_string( uint16_t ); |
| 19 | std::string to_pretty_string( int64_t ); |
| 20 | inline fc::string to_string( int32_t v ) { return to_string( int64_t(v) ); } |
| 21 | inline fc::string to_string( uint32_t v ){ return to_string( uint64_t(v) ); } |
| 22 | #ifdef __APPLE__ |
| 23 | inline fc::string to_string( size_t s) { return to_string(uint64_t(s)); } |
no outgoing calls
no test coverage detected