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