From 3afa22a3e728d22197978ab94d941140674b72ff Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 18 Feb 2015 17:51:56 +0000 Subject: [PATCH] Move the default template arguments into the forward declarations for the container adapters: stack and queue. References PR#22605. llvm-svn: 229708 --- libcxx/include/queue | 4 ++-- libcxx/include/stack | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libcxx/include/queue b/libcxx/include/queue index bdfd70603553..6f49c87acdc5 100644 --- a/libcxx/include/queue +++ b/libcxx/include/queue @@ -177,7 +177,7 @@ template _LIBCPP_BEGIN_NAMESPACE_STD -template class _LIBCPP_TYPE_VIS_ONLY queue; +template > class _LIBCPP_TYPE_VIS_ONLY queue; template _LIBCPP_INLINE_VISIBILITY @@ -189,7 +189,7 @@ _LIBCPP_INLINE_VISIBILITY bool operator< (const queue<_Tp, _Container>& __x,const queue<_Tp, _Container>& __y); -template > +template */> class _LIBCPP_TYPE_VIS_ONLY queue { public: diff --git a/libcxx/include/stack b/libcxx/include/stack index 30909c1ee3bd..2992b091ee51 100644 --- a/libcxx/include/stack +++ b/libcxx/include/stack @@ -91,7 +91,7 @@ template _LIBCPP_BEGIN_NAMESPACE_STD -template class _LIBCPP_TYPE_VIS_ONLY stack; +template > class _LIBCPP_TYPE_VIS_ONLY stack; template _LIBCPP_INLINE_VISIBILITY @@ -103,7 +103,7 @@ _LIBCPP_INLINE_VISIBILITY bool operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y); -template > +template */> class _LIBCPP_TYPE_VIS_ONLY stack { public: