diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-02-17 14:29:14 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-03-25 00:34:11 +0700 |
commit | 59ff5a6a3c3e1f5255c5cf29f98df633a77b89b3 (patch) | |
tree | c7660fa62600366e3479dbf6b2fd1d25709af1b5 /system/include/libcxx/queue | |
parent | 80fd6f0bce2b95db6ec539c9275ce24585550e7c (diff) |
Update to current libcxx.
This doesn't work yet as it needs to be customized for use with
emscripten still.
Diffstat (limited to 'system/include/libcxx/queue')
-rw-r--r-- | system/include/libcxx/queue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/system/include/libcxx/queue b/system/include/libcxx/queue index bed5bb7a..4741f003 100644 --- a/system/include/libcxx/queue +++ b/system/include/libcxx/queue @@ -171,17 +171,21 @@ template <class T, class Container, class Compare> #include <functional> #include <algorithm> +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) #pragma GCC system_header +#endif _LIBCPP_BEGIN_NAMESPACE_STD -template <class _Tp, class _Container> class queue; +template <class _Tp, class _Container> class _LIBCPP_VISIBLE queue; template <class _Tp, class _Container> +_LIBCPP_INLINE_VISIBILITY bool operator==(const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); template <class _Tp, class _Container> +_LIBCPP_INLINE_VISIBILITY bool operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); |