| 49 | |
| 50 | template <class Archive> |
| 51 | static void load_and_construct( Archive & ar, cereal::construct<Data> & construct ) |
| 52 | { |
| 53 | int32_t xx; |
| 54 | int64_t yy; |
| 55 | ar( xx, yy ); |
| 56 | construct( xx, yy ); |
| 57 | } |
| 58 | |
| 59 | bool operator==( Data const & other ) const |
| 60 | { |