diff --git a/include/helpers.hpp b/include/helpers.hpp index 13f5e1a9..4183429a 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -82,12 +82,4 @@ static inline int clz(unsigned int x) { // For lack of , this adds some more brevity #define RANGE(s) std::begin(s), std::end(s) -// Convenience feature for visiting variants. -template -struct Visitor : Ts... { - using Ts::operator()...; -}; -template -Visitor(Ts...) -> Visitor; - #endif // HELPERS_H