From 9b27c7db88af62edec6df753039e8edb3e390eff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sipka=20D=C3=A1niel?= Date: Wed, 12 Feb 2020 20:58:52 +0100 Subject: [PATCH] no wrapper --- include/mstch/mstch.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/mstch/mstch.hpp b/include/mstch/mstch.hpp index 2b1ef40..5abf5f8 100644 --- a/include/mstch/mstch.hpp +++ b/include/mstch/mstch.hpp @@ -90,13 +90,6 @@ struct map_wrapper; struct array_wrapper; struct lambda_wrapper; -template -struct recursive_wrapper { - recursive_wrapper(T t_) { t.emplace_back(std::move(t_)); } - operator const T&() const { return t.front(); } - std::vector t; -}; - using node = std::variant