forked from OSchip/llvm-project
[libc++] Removes a GCC bug work-around.
Based on the comments in [1] this should be fixed in GCC-11. [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37804 Reviewed By: #libc, ldionne Differential Revision: https://reviews.llvm.org/D127590
This commit is contained in:
parent
883dd770d7
commit
26465c8337
|
@ -33,12 +33,10 @@ _LIBCPP_PUSH_MACROS
|
|||
|
||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||
|
||||
#if defined(__GNUC__) && !defined(__clang__) // gcc.gnu.org/PR37804
|
||||
template <class, class, class, class> class _LIBCPP_TEMPLATE_VIS map;
|
||||
template <class, class, class, class> class _LIBCPP_TEMPLATE_VIS multimap;
|
||||
template <class, class, class> class _LIBCPP_TEMPLATE_VIS set;
|
||||
template <class, class, class> class _LIBCPP_TEMPLATE_VIS multiset;
|
||||
#endif
|
||||
|
||||
template <class _Tp, class _Compare, class _Allocator> class __tree;
|
||||
template <class _Tp, class _NodePtr, class _DiffType>
|
||||
|
|
Loading…
Reference in New Issue