diff --git a/README.md b/README.md index 6aef1dd..0a8f7f0 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Bill (Heath) Gates 65 3.3 * Conversions can be chained if invalid * Fast -# Instalation +# Installation ``` $ git clone https://github.com/red0124/ssp diff --git a/include/ss/parser.hpp b/include/ss/parser.hpp index 1dd978d..20385d5 100644 --- a/include/ss/parser.hpp +++ b/include/ss/parser.hpp @@ -5,7 +5,7 @@ #include "restrictions.hpp" #include #include -#include +#include #include #include diff --git a/include/ss/type_traits.hpp b/include/ss/type_traits.hpp index 11a2dc7..75683e6 100644 --- a/include/ss/type_traits.hpp +++ b/include/ss/type_traits.hpp @@ -57,14 +57,6 @@ using head_t = typename left_of_impl<0, Ts...>::type; // tup tail/last //////////////// -template -struct right_of_impl; - -template -struct right_of_impl { - using type = typename right_of_impl::type; -}; - template struct right_of_impl<0, T, Ts...> { using type = std::tuple; @@ -230,9 +222,6 @@ using filter_not_t = typename filter_not::type; // count //////////////// -template