diff options
Diffstat (limited to 'libcxx/include/ext/hash_set')
-rw-r--r-- | libcxx/include/ext/hash_set | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libcxx/include/ext/hash_set b/libcxx/include/ext/hash_set index b61f5f1da448..7d19ccd006e2 100644 --- a/libcxx/include/ext/hash_set +++ b/libcxx/include/ext/hash_set @@ -205,6 +205,10 @@ template <class Value, class Hash, class Pred, class Alloc> #endif #endif +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + namespace __gnu_cxx { @@ -654,6 +658,6 @@ operator!=(const hash_multiset<_Value, _Hash, _Pred, _Alloc>& __x, return !(__x == __y); } -} // __gnu_cxx +} // namespace __gnu_cxx #endif // _LIBCPP_HASH_SET |