3
0
mirror of https://github.com/triqs/dft_tools synced 2024-10-31 11:13:46 +01:00

Fix serialization example

This commit is contained in:
Nils Wentzell 2024-08-07 16:52:55 -04:00
parent 79789512bf
commit 80f1ebe965

View File

@ -59,7 +59,7 @@ namespace app4triqs {
friend void h5_read(h5::group grp, std::string subgroup_name, toto &m); friend void h5_read(h5::group grp, std::string subgroup_name, toto &m);
/// Serialization /// Serialization
template <class Archive> void serialize(Archive &ar, const unsigned int) { ar &i; } template <class Archive> void serialize(Archive &ar) { ar &i; }
}; };
/** /**