Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
poor-circle committed Aug 8, 2023
1 parent a8289fa commit 0ab5963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/struct_pack/examples/non_aggregated_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ void non_aggregated_type() {
{
example3::person p{20, "tom", 114.514};
auto buffer = struct_pack::serialize(p);
auto p3 = struct_pack::deserialize<example2::person>(buffer);
auto p3 = struct_pack::deserialize<example3::person>(buffer);
assert(p3);
assert(p == p3.value());
}
Expand Down

0 comments on commit 0ab5963

Please sign in to comment.