| 41 | |
| 42 | template<class Archive> |
| 43 | void save(Archive & ar) const |
| 44 | { |
| 45 | std::cout << "Saving Base" << std::endl; |
| 46 | ar( y ); |
| 47 | } |
| 48 | |
| 49 | template<class Archive> |
| 50 | void load(Archive & ar) |
nothing calls this directly
no outgoing calls
no test coverage detected