| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected