diff options
| author | Howard Hinnant <hhinnant@apple.com> | 2013-08-24 21:31:37 +0000 |
|---|---|---|
| committer | Howard Hinnant <hhinnant@apple.com> | 2013-08-24 21:31:37 +0000 |
| commit | c9d3ae43d2838bea12385e1f9c289009be78994e (patch) | |
| tree | fc6c2afede131687e768069c549ccda24c7208c7 /libcxx/include/system_error | |
| parent | f9024e9cdacf1fe52e4ab88a455c2b1abc022932 (diff) | |
| download | bcm5719-llvm-c9d3ae43d2838bea12385e1f9c289009be78994e.tar.gz bcm5719-llvm-c9d3ae43d2838bea12385e1f9c289009be78994e.zip | |
G M: Improve support for compilers not supporting defaulted functions.
llvm-svn: 189184
Diffstat (limited to 'libcxx/include/system_error')
| -rw-r--r-- | libcxx/include/system_error | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/system_error b/libcxx/include/system_error index afc73f29ad6..66bf6d6c424 100644 --- a/libcxx/include/system_error +++ b/libcxx/include/system_error @@ -371,7 +371,7 @@ public: error_category() _NOEXCEPT; #else _LIBCPP_ALWAYS_INLINE - _LIBCPP_CONSTEXPR_AFTER_CXX11 error_category() _NOEXCEPT = default; + _LIBCPP_CONSTEXPR_AFTER_CXX11 error_category() _NOEXCEPT _LIBCPP_DEFAULT; #endif private: error_category(const error_category&);// = delete; |

