| 228 | |
| 229 | template <size_t N> |
| 230 | auto get(const tuple_like& t) noexcept -> decltype(t.get<N>()) { |
| 231 | return t.get<N>(); |
| 232 | } |
| 233 | |
| 234 | // https://github.com/llvm/llvm-project/issues/39218 |
| 235 | FMT_PRAGMA_CLANG(diagnostic ignored "-Wmismatched-tags") |
nothing calls this directly
no outgoing calls
no test coverage detected