stl_bvector.h: Use _M_impl._M_start.
authorBenjamin Kosnik <bkoz@redhat.com>
Sun, 18 Apr 2004 05:04:58 +0000 (05:04 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Sun, 18 Apr 2004 05:04:58 +0000 (05:04 +0000)
2004-04-17  Benjamin Kosnik  <bkoz@redhat.com>

* include/bits/stl_bvector.h: Use _M_impl._M_start.

From-SVN: r80811

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

index 386efbc3e830781e254853695d3cc3b2bb752cd5..cbae3127aa50e306d430d9d3a20652976f8d9d58 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-17  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/stl_bvector.h: Use _M_impl._M_start.
+       
 2004-04-16  Benjamin Kosnik  <bkoz@redhat.com>
        
        * include/bits/c++config (_GLIBCXX_STD): New.
index 4ecdf4449259fa0439bb6955ba9419a78d97081c..afae738418d5d675161abe83c06c10550e014556 100644 (file)
@@ -445,7 +445,7 @@ template<typename _Alloc>
       this->_M_impl._M_end_of_storage = __q 
                                       + (__n + _S_word_bit - 1) / _S_word_bit;
       this->_M_impl._M_start = iterator(__q, 0);
-      this->_M_impl._M_finish = this->_M_start + difference_type(__n);
+      this->_M_impl._M_finish = this->_M_impl._M_start + difference_type(__n);
     }
 
     void _M_insert_aux(iterator __position, bool __x)