mirror of
https://github.com/boostorg/system.git
synced 2025-07-30 04:27:14 +02:00
error_code default ctor is constexpr in c++11
This commit is contained in:
@ -114,7 +114,10 @@ public:
|
|||||||
|
|
||||||
// constructors:
|
// constructors:
|
||||||
|
|
||||||
BOOST_SYSTEM_CONSTEXPR error_code() BOOST_NOEXCEPT:
|
#if ! BOOST_WORKAROUND(BOOST_GCC, < 40800)
|
||||||
|
BOOST_CONSTEXPR
|
||||||
|
#endif
|
||||||
|
error_code() BOOST_NOEXCEPT:
|
||||||
d1_(), lc_flags_( 0 )
|
d1_(), lc_flags_( 0 )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user