aboutsummaryrefslogtreecommitdiff
path: root/system/include/libcxx/stack
diff options
context:
space:
mode:
Diffstat (limited to 'system/include/libcxx/stack')
-rw-r--r--system/include/libcxx/stack6
1 files changed, 5 insertions, 1 deletions
diff --git a/system/include/libcxx/stack b/system/include/libcxx/stack
index 3d72f966..12fb35b7 100644
--- a/system/include/libcxx/stack
+++ b/system/include/libcxx/stack
@@ -85,17 +85,21 @@ template <class T, class Container>
#include <__config>
#include <deque>
+#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#pragma GCC system_header
+#endif
_LIBCPP_BEGIN_NAMESPACE_STD
-template <class _Tp, class _Container> class stack;
+template <class _Tp, class _Container> class _LIBCPP_VISIBLE stack;
template <class _Tp, class _Container>
+_LIBCPP_INLINE_VISIBILITY
bool
operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
template <class _Tp, class _Container>
+_LIBCPP_INLINE_VISIBILITY
bool
operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);