| 253 | // Had to redefine Get because automatic resolution does not work with current std::variant implementation |
| 254 | template <class T> |
| 255 | decltype(auto) Get() { |
| 256 | return std::get<T>((TBase&)*this); |
| 257 | } |
| 258 | |
| 259 | template <class T> |
| 260 | decltype(auto) Get() const { |
no outgoing calls
no test coverage detected