From b16d42a31b8b92fd829126f9996ce5d01b0c9fab Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Fri, 28 Aug 2009 16:45:21 +0000 Subject: [PATCH] reduce fusion, proto and xpressive warnings under msvc /Za switch [SVN r55838] --- include/boost/fusion/view/ext_/segmented_iterator.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/fusion/view/ext_/segmented_iterator.hpp b/include/boost/fusion/view/ext_/segmented_iterator.hpp index 0a192bdc..b28182a4 100644 --- a/include/boost/fusion/view/ext_/segmented_iterator.hpp +++ b/include/boost/fusion/view/ext_/segmented_iterator.hpp @@ -327,8 +327,8 @@ namespace boost { namespace fusion typedef typename Cons::car_type car_type; typedef typename Cons::cdr_type cdr_type; - explicit segmented_iterator(Cons const &cons) - : cons_(cons) + explicit segmented_iterator(Cons const &c) + : cons_(c) {} cons_type const &cons() const { return this->cons_; };