| 448 | |
| 449 | template<typename T> |
| 450 | inline string to_string(T value) FL_NOEXCEPT { |
| 451 | string result; |
| 452 | result.append(value); |
| 453 | return result; |
| 454 | } |
| 455 | |
| 456 | inline string to_string(float value, int precision) FL_NOEXCEPT { |
| 457 | string result; |
no test coverage detected