| 114 | |
| 115 | //! Saving for POD types to binary |
| 116 | template<class T> inline |
| 117 | typename std::enable_if<std::is_arithmetic<T>::value, void>::type |
| 118 | CEREAL_SAVE_FUNCTION_NAME(BinaryOutputArchive & ar, T const & t) |
| 119 | { |
| 120 | ar.saveBinary(std::addressof(t), sizeof(t)); |
| 121 | } |
| 122 | |
| 123 | //! Loading for POD types from binary |
| 124 | template<class T> inline |
nothing calls this directly
no test coverage detected