Skip to content

Commit 2637833

Browse files
author
Hana Dusíková
committed
remove unused variables
1 parent 1c88d55 commit 2637833

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/ctre/first.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ constexpr auto first(ctll::list<Content...>, ctll::list<any, Tail...>) noexcept
231231

232232
// negative
233233
template <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

238238
template <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

Comments
 (0)