MCPcopy Create free account
hub / github.com/USCiLab/cereal / CEREAL_SAVE_FUNCTION_NAME

Function CEREAL_SAVE_FUNCTION_NAME

include/cereal/archives/binary.hpp:116–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

saveBinaryMethod · 0.45

Tested by

no test coverage detected