]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* include/bits/stl_deque.h (_Deque_impl): Move comment.
authorJonathan Wakely <jwakely@redhat.com>
Wed, 22 Jan 2014 14:34:39 +0000 (14:34 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 22 Jan 2014 14:34:39 +0000 (14:34 +0000)
From-SVN: r206924

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_deque.h

index bc1803eb5bf7d22bb6142b09c1a0f860b599573f..8810a0aa3e86f3e4944d508ab02161d395b87b14 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-22  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/stl_deque.h (_Deque_impl): Move comment.
+
 2014-01-21  Tim Shen  <timshen91@gmail.com>
 
        * include/bits/regex.tcc: Remove incorrect `nosubs` handling.
index 10fcb073230ebc3be89bf0bff163bf2a3bb80dee..996c10f604a8bb999662a75a8ef6d17e9e5c4361 100644 (file)
@@ -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
       {