mirror of
https://github.com/boostorg/system.git
synced 2025-07-29 20:17:13 +02:00
error_code default ctor is constexpr in c++11
This commit is contained in:
@ -114,7 +114,10 @@ public:
|
||||
|
||||
// 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 )
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user