| 506 | namespace _impl_ { |
| 507 | |
| 508 | template <bool cond, typename True, typename False> struct Branch; |
| 509 | |
| 510 | template <typename True, typename False> struct Branch<true, True, False> { |
| 511 | using Result = True; |
nothing calls this directly
no outgoing calls
no test coverage detected