From de667c8afb20ea2721b241c3000731ae52a1438c Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Fri, 22 Mar 2024 03:29:56 -0400 Subject: [PATCH] Remove unused `Visitor` template --- include/helpers.hpp | 8 -------- 1 file changed, 8 deletions(-) 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