diff options
author | dim <dim@FreeBSD.org> | 2016-03-11 20:30:06 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2016-03-11 20:30:06 +0000 |
commit | c7d3f0869b708ea831a468bafc24c35dcaeb48b1 (patch) | |
tree | ffecdc8300de20e3337aa723a622a3fa0ee03ea7 /contrib/libc++/include/system_error | |
parent | 23ec6e34dcd11362068881933d01b08b710f6faf (diff) | |
download | FreeBSD-src-c7d3f0869b708ea831a468bafc24c35dcaeb48b1.zip FreeBSD-src-c7d3f0869b708ea831a468bafc24c35dcaeb48b1.tar.gz |
Pull in r246280 from upstream libc++ trunk (by Eric Fiselier):
Fix most GCC warnings during build. Only -Wattribute left.
This helps to fix a number of -Werror warnings when building world with
recent versions of gcc (e.g. the devel/*-xtoolchain-gcc ports).
Diffstat (limited to 'contrib/libc++/include/system_error')
-rw-r--r-- | contrib/libc++/include/system_error | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libc++/include/system_error b/contrib/libc++/include/system_error index 66bf6d6..134bb32 100644 --- a/contrib/libc++/include/system_error +++ b/contrib/libc++/include/system_error @@ -371,7 +371,7 @@ public: error_category() _NOEXCEPT; #else _LIBCPP_ALWAYS_INLINE - _LIBCPP_CONSTEXPR_AFTER_CXX11 error_category() _NOEXCEPT _LIBCPP_DEFAULT; + _LIBCPP_CONSTEXPR_AFTER_CXX11 error_category() _NOEXCEPT _LIBCPP_DEFAULT #endif private: error_category(const error_category&);// = delete; |