//@cond
/// The class has no internal statistics. For test consistency only
- nullptr_t statistics() const
+ std::nullptr_t statistics() const
{
return nullptr;
}
, nValue(val)
{}
-# ifdef _DEBUG
base_hook_value( base_hook_value&& s )
: Hook()
, nKey(s.nKey)
nValue = s.nValue;
return *this;
}
-# endif
};
template <typename Hook>
: nKey(key)
, nValue(val)
{}
-# ifdef _DEBUG
+
member_hook_value( member_hook_value&& s )
: nKey(s.nKey)
, nValue(s.nValue)
nValue = s.nValue;
return *this;
}
-# endif
};
template <typename ValueType>
return o;
}
- static inline std::ostream& operator <<( std::ostream& o, nullptr_t /*s*/ )
+ static inline std::ostream& operator <<( std::ostream& o, std::nullptr_t /*s*/ )
{
return o;
}