| 895 | struct nondeterministic_format_string { |
| 896 | mutable int i = 0; |
| 897 | FMT_CONSTEXPR operator fmt::string_view() const { |
| 898 | return {"{}", i++ != 0 ? 2u : 0u}; |
| 899 | } |
| 900 | }; |
| 901 | |
| 902 | #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 1200 |
nothing calls this directly
no outgoing calls
no test coverage detected