Make the default constructor constexpr

This commit is contained in:
Andrey Semashev
2015-10-05 18:24:52 +03:00
parent df90496583
commit 970a179ac2

View File

@ -59,7 +59,7 @@ public:
typedef T element_type;
intrusive_ptr() BOOST_NOEXCEPT : px( 0 )
BOOST_CONSTEXPR intrusive_ptr() BOOST_NOEXCEPT : px( 0 )
{
}