@@ -231,12 +231,12 @@ constexpr auto first(ctll::list<Content...>, ctll::list<any, Tail...>) noexcept
231231
232232// negative
233233template <typename ... Content, typename ... SetContent, typename ... Tail>
234- constexpr auto first (ctll::list<Content...> l , ctll::list<negate<SetContent...>, Tail...>) noexcept {
234+ constexpr auto first (ctll::list<Content...>, ctll::list<negate<SetContent...>, Tail...>) noexcept {
235235 return ctll::list<Content..., negative_set<SetContent...>>{};
236236}
237237
238238template <typename ... Content, typename ... SetContent, typename ... Tail>
239- constexpr auto first (ctll::list<Content...> l , ctll::list<negative_set<SetContent...>, Tail...>) noexcept {
239+ constexpr auto first (ctll::list<Content...>, ctll::list<negative_set<SetContent...>, Tail...>) noexcept {
240240 return ctll::list<Content..., negative_set<SetContent...>>{};
241241}
242242
@@ -297,7 +297,7 @@ template <auto Head, auto... Tail, typename CB> constexpr int64_t negative_helpe
297297 return negative_helper (ctre::enumeration<Tail...>{}, cb, nstart);
298298}
299299
300- template <typename CB> constexpr int64_t negative_helper (ctre::enumeration<>, CB & cb , int64_t start) {
300+ template <typename CB> constexpr int64_t negative_helper (ctre::enumeration<>, CB &, int64_t start) {
301301 return start;
302302}
303303
0 commit comments