| 103 | //! Loads data to a cereal binary archive |
| 104 | template <class T> |
| 105 | static void load( std::istringstream & is, T & data ) |
| 106 | { |
| 107 | cereal::BinaryInputArchive iar(is); |
| 108 | iar(data); |
| 109 | } |
| 110 | }; |
| 111 | |
| 112 | struct boostBinary |
nothing calls this directly
no outgoing calls
no test coverage detected