1 --- a/b/boost/boost/spirit/home/classic/debug/impl/parser_names.ipp
2 +++ a/b/boost/boost/spirit/home/classic/debug/impl/parser_names.ipp
5 template <typename T, int Radix, unsigned MinDigits, int MaxDigits>
7 - parser_name(uint_parser<T, Radix, MinDigits, MaxDigits> const& p)
8 + parser_name(uint_parser<T, Radix, MinDigits, MaxDigits> const&)
10 BOOST_SPIRIT_SSTREAM stream;
11 stream << Radix << ", " << MinDigits << ", " << MaxDigits;
14 template <typename T, int Radix, unsigned MinDigits, int MaxDigits>
16 - parser_name(int_parser<T, Radix, MinDigits, MaxDigits> const& p)
17 + parser_name(int_parser<T, Radix, MinDigits, MaxDigits> const&)
19 BOOST_SPIRIT_SSTREAM stream;
20 stream << Radix << ", " << MinDigits << ", " << MaxDigits;
23 template <typename T, typename RealPoliciesT>
25 - parser_name(real_parser<T, RealPoliciesT> const& p)
26 + parser_name(real_parser<T, RealPoliciesT> const&)
28 return std::string("real_parser");
32 template <typename DerivedT>
34 - parser_name(parser<DerivedT> const& p)
35 + parser_name(parser<DerivedT> const&)
37 return std::string("parser");
40 // from primitives.hpp
41 template <typename DerivedT>
43 - parser_name(char_parser<DerivedT> const &p)
44 + parser_name(char_parser<DerivedT> const &)
46 return std::string("char_parser");