| 36 | |
| 37 | template<size_t N> |
| 38 | constexpr decltype(auto) get() noexcept |
| 39 | { |
| 40 | if constexpr(N == 1) { |
| 41 | return GetX(); |
| 42 | } else if constexpr(N == 0) { |
| 43 | return (mY); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | template<size_t N> |
| 48 | constexpr decltype(auto) get() const noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected