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

Method loadLong

include/cereal/archives/json.hpp:667–669  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

665 private:
666 //! 32 bit signed long loading from current node
667 template <class T> inline
668 typename std::enable_if<sizeof(T) == sizeof(std::int32_t) && std::is_signed<T>::value, void>::type
669 loadLong(T & l){ loadValue( reinterpret_cast<std::int32_t&>( l ) ); }
670
671 //! non 32 bit signed long loading from current node
672 template <class T> inline

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected