reduce fusion, proto and xpressive warnings under msvc /Za switch

[SVN r55838]
This commit is contained in:
Eric Niebler
2009-08-28 16:45:21 +00:00
parent 0dd1f341c8
commit b16d42a31b

View File

@ -327,8 +327,8 @@ namespace boost { namespace fusion
typedef typename Cons::car_type car_type; typedef typename Cons::car_type car_type;
typedef typename Cons::cdr_type cdr_type; typedef typename Cons::cdr_type cdr_type;
explicit segmented_iterator(Cons const &cons) explicit segmented_iterator(Cons const &c)
: cons_(cons) : cons_(c)
{} {}
cons_type const &cons() const { return this->cons_; }; cons_type const &cons() const { return this->cons_; };