| 71 | |
| 72 | template<class Archive> |
| 73 | void load(Archive & ar) |
| 74 | { |
| 75 | std::cout << "Loading MyType" << std::endl; |
| 76 | ar( cereal::base_class<Base>( this ) ); |
| 77 | } |
| 78 | }; |
| 79 | CEREAL_REGISTER_TYPE(MyType) |
| 80 |
nothing calls this directly
no outgoing calls
no test coverage detected