aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/StlSupport/StdVector.h
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-08-28 18:32:39 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-08-28 18:32:39 +0200
commit73ca600bca42f5ccf507ca4be1f53921973b44fe (patch)
treeb7e2608239cd7179c02efcfe2bddfb5c4d74ca04 /Eigen/src/StlSupport/StdVector.h
parentef4d79fed8b84f03fe3c7ace98442c822cf3472a (diff)
Fix numerous shadow-warnings for GCC<=4.8
Diffstat (limited to 'Eigen/src/StlSupport/StdVector.h')
-rw-r--r--Eigen/src/StlSupport/StdVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/StlSupport/StdVector.h b/Eigen/src/StlSupport/StdVector.h
index ec22821d2..7787edd72 100644
--- a/Eigen/src/StlSupport/StdVector.h
+++ b/Eigen/src/StlSupport/StdVector.h
@@ -36,7 +36,7 @@ namespace std \
vector(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : vector_base(first, last, a) {} \
vector(const vector& c) : vector_base(c) {} \
explicit vector(size_type num, const value_type& val = value_type()) : vector_base(num, val) {} \
- vector(iterator start, iterator end) : vector_base(start, end) {} \
+ vector(iterator start_, iterator end_) : vector_base(start_, end_) {} \
vector& operator=(const vector& x) { \
vector_base::operator=(x); \
return *this; \