aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/StlSupport/StdList.h
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-08-30 16:33:03 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2018-08-30 16:33:03 +0200
commitddbc5643860d6033fdca88145d2427ae52716a9d (patch)
treecda7177bfeec38e26d7a07c7e13664b07ca9df2a /Eigen/src/StlSupport/StdList.h
parent946c3e2544da35ed0539e433cc906c93c9bda3ed (diff)
Fixed a few more shadowing warnings when compiling with g++ (and c++03)
Diffstat (limited to 'Eigen/src/StlSupport/StdList.h')
-rw-r--r--Eigen/src/StlSupport/StdList.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/StlSupport/StdList.h b/Eigen/src/StlSupport/StdList.h
index 1b6d44061..8ba3fada0 100644
--- a/Eigen/src/StlSupport/StdList.h
+++ b/Eigen/src/StlSupport/StdList.h
@@ -62,7 +62,7 @@ namespace std
: list_base(first, last, a) {} \
list(const list& c) : list_base(c) {} \
explicit list(size_type num, const value_type& val = value_type()) : list_base(num, val) {} \
- list(iterator start, iterator end) : list_base(start, end) {} \
+ list(iterator start_, iterator end_) : list_base(start_, end_) {} \
list& operator=(const list& x) { \
list_base::operator=(x); \
return *this; \