Merge pull request #19 from Lastique/patch-4

Make the default  intrusive_ptr constructor constexpr
This commit is contained in:
Peter Dimov
2016-05-17 17:59:10 +03:00

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 )
{
}