Skip to content

Commit

Permalink
Fix serialization example
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentzell committed Aug 7, 2024
1 parent 7978951 commit 80f1ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c++/app4triqs/app4triqs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace app4triqs {
friend void h5_read(h5::group grp, std::string subgroup_name, toto &m);

/// Serialization
template <class Archive> void serialize(Archive &ar, const unsigned int) { ar &i; }
template <class Archive> void serialize(Archive &ar) { ar &i; }
};

/**
Expand Down

0 comments on commit 80f1ebe

Please sign in to comment.