Files
tyche/.old/src/common/overloaded.hh
2026-05-10 07:53:28 -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