Skip to content

Commit

Permalink
fix unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
freshFruict committed Sep 11, 2024
1 parent adbce94 commit a256ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cista/serialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ void check_state(Ctx const& c, generic_string<Ptr>* el) {
}

template <typename Ctx, typename Ptr, typename Fn>
void recurse(Ctx& c, generic_string<Ptr>* el, Fn&& fn) {
void recurse(Ctx&, generic_string<Ptr>* el, Fn&& fn) {
using Type = generic_string<Ptr>;
if constexpr (sizeof(typename Type::CharT) > 1) {
typename Type::CharT* s = el->data();
Expand Down

0 comments on commit a256ae9

Please sign in to comment.