From: Jonathan Wakely Date: Wed, 22 Jan 2014 14:34:39 +0000 (+0000) Subject: * include/bits/stl_deque.h (_Deque_impl): Move comment. X-Git-Tag: releases/gcc-4.9.0~1468 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=af0e0fa06b515dbc4978ddbce840ace3fe2dcc31;p=thirdparty%2Fgcc.git * include/bits/stl_deque.h (_Deque_impl): Move comment. From-SVN: r206924 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index bc1803eb5bf7..8810a0aa3e86 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2014-01-22 Jonathan Wakely + + * include/bits/stl_deque.h (_Deque_impl): Move comment. + 2014-01-21 Tim Shen * include/bits/regex.tcc: Remove incorrect `nosubs` handling. diff --git a/libstdc++-v3/include/bits/stl_deque.h b/libstdc++-v3/include/bits/stl_deque.h index 10fcb073230e..996c10f604a8 100644 --- a/libstdc++-v3/include/bits/stl_deque.h +++ b/libstdc++-v3/include/bits/stl_deque.h @@ -487,13 +487,13 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER ~_Deque_base() _GLIBCXX_NOEXCEPT; protected: - //This struct encapsulates the implementation of the std::deque - //standard container and at the same time makes use of the EBO - //for empty allocators. typedef typename _Alloc::template rebind<_Tp*>::other _Map_alloc_type; typedef typename _Alloc::template rebind<_Tp>::other _Tp_alloc_type; + //This struct encapsulates the implementation of the std::deque + //standard container and at the same time makes use of the EBO + //for empty allocators. struct _Deque_impl : public _Tp_alloc_type {