Skip to content

Commit

Permalink
fix unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
JiakunYan committed Nov 10, 2024
1 parent ed1c3f8 commit b77b02e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions libs/full/parcelset/tests/regressions/very_big_parcel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ class Data
}

template <typename Archive>
friend auto serialize(Archive& archive, Data& object, unsigned int version)
void serialize(Archive& ar, const unsigned int)
{
archive& object._data;
return;
// clang-format off
ar & _data;
// clang-format on
}

private:
Expand Down

0 comments on commit b77b02e

Please sign in to comment.