Files
tyche/src/common/overloaded.hh
2026-04-27 15:10:57 -05:00

9 lines
189 B
C++

#ifndef TYCHE_OVERLOADED_HH
#define TYCHE_OVERLOADED_HH
// used by std::visitor
template<class... Ts>
struct overloaded : Ts... { using Ts::operator()...; };
#endif //TYCHE_OVERLOADED_HH