diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-06-01 20:59:10 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-06-01 20:59:10 +0000 |
| commit | edb11085302f80f38c9d976f003aa1c9002c7abb (patch) | |
| tree | edfe9dcac670e9f47ee7fdee893130fcf86ba196 /include/bitset | |
| parent | 10a0bef720b6882fce588a10b07b0584d62eac76 (diff) | |
Notes
Diffstat (limited to 'include/bitset')
| -rw-r--r-- | include/bitset | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/include/bitset b/include/bitset index b49c93ce2224c..583122fbfdab0 100644 --- a/include/bitset +++ b/include/bitset @@ -113,10 +113,6 @@ template <size_t N> struct hash<std::bitset<N>>; */ -#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) -#pragma GCC system_header -#endif - #include <__config> #include <__bit_reference> #include <cstddef> @@ -126,7 +122,13 @@ template <size_t N> struct hash<std::bitset<N>>; #include <iosfwd> #include <__functional_base> -#include <__undef_min_max> +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + +_LIBCPP_PUSH_MACROS +#include <__undef_macros> + _LIBCPP_BEGIN_NAMESPACE_STD @@ -1090,4 +1092,6 @@ operator<<(basic_ostream<_CharT, _Traits>& __os, const bitset<_Size>& __x); _LIBCPP_END_NAMESPACE_STD +_LIBCPP_POP_MACROS + #endif // _LIBCPP_BITSET |
