diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2012-10-22 18:04:00 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2012-10-22 18:04:00 +0000 |
| commit | ea907107107132d0201e0ba377408f4e117b581c (patch) | |
| tree | 955d27b98fe24102c3e5101aa117112b0d21ae33 /include/stack | |
| parent | 43cd7615798ea22556f20bbd64cff1e0c691e1d0 (diff) | |
Notes
Diffstat (limited to 'include/stack')
| -rw-r--r-- | include/stack | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stack b/include/stack index 59906bd89edb..12fb35b703e3 100644 --- a/include/stack +++ b/include/stack @@ -91,13 +91,15 @@ template <class T, class Container> _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); |
