| 6 | namespace std { |
| 7 | #ifdef __ANDROID__ |
| 8 | template <typename T> string to_string(T value) { |
| 9 | ostringstream os; |
| 10 | os << value; |
| 11 | return os.str(); |
| 12 | } |
| 13 | #endif |
| 14 | |
| 15 | inline string to_string(string &str) { return str; } |
no outgoing calls
no test coverage detected