Skip to content

Commit

Permalink
#1258: serialize all fields in tests::unit::MyObjGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Feb 15, 2021
1 parent f3dd085 commit cf4519f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/unit/termination/test_term_dep_send_chain.cc
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,13 @@ struct MyObjGroup {
}

template <typename SerializerT>
void serialize(SerializerT& s) {}
void serialize(SerializerT& s) {
s | started_
| epoch_
| backend_proxy_
| frontend_proxy_
| chains_;
}

private:
// Has an update been started
Expand Down

0 comments on commit cf4519f

Please sign in to comment.