| 208 | template <class Ar, class TT> friend struct ::cereal::boost_variant_detail::LoadAndConstructLoadWrapper; |
| 209 | |
| 210 | construct( T * p ) : itsPtr( p ), itsEnableSharedRestoreFunction( [](){} ), itsValid( false ) {} |
| 211 | construct( T * p, std::function<void()> enableSharedFunc ) : // g++4.7 ice with default lambda to std func |
| 212 | itsPtr( p ), itsEnableSharedRestoreFunction( enableSharedFunc ), itsValid( false ) {} |
| 213 | construct( construct const & ) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected