You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2006/05/18 01:55:13 UTC

svn commit: r407407 - /incubator/stdcxx/trunk/include/vector.cc

Author: sebor
Date: Wed May 17 16:55:13 2006
New Revision: 407407

URL: http://svn.apache.org/viewvc?rev=407407&view=rev
Log:
2006-05-17  Martin Sebor  <se...@roguewave.com>

	* vector.cc (_C_insert_range): Removed a shadowing variable.

Modified:
    incubator/stdcxx/trunk/include/vector.cc

Modified: incubator/stdcxx/trunk/include/vector.cc
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/vector.cc?rev=407407&r1=407406&r2=407407&view=diff
==============================================================================
--- incubator/stdcxx/trunk/include/vector.cc (original)
+++ incubator/stdcxx/trunk/include/vector.cc Wed May 17 16:55:13 2006
@@ -627,8 +627,6 @@
             _FwdIter __mid = __first;
             _STD::advance (__mid, __size2a);
 
-            const pointer __end = __self->_C_end;
-
             // construct copies of the trailing subsequence of the range
             // of elements being inserted, as if by a call to
             // std::uninitialized_copy (__mid, __last, _C_end);