Format with no arguments
| 437 | |
| 438 | /// Format with no arguments |
| 439 | inline fl::string format(const char* fmt) { |
| 440 | return format_detail::format_impl(fmt, nullptr, 0); |
| 441 | } |
| 442 | |
| 443 | /// Format with variadic arguments |
| 444 | template <typename... Args> |
no test coverage detected