1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
--- a/b/boost/boost/spirit/home/classic/debug/impl/parser_names.ipp
+++ a/b/boost/boost/spirit/home/classic/debug/impl/parser_names.ipp
@@ -95,7 +95,7 @@
// from numerics.hpp
template <typename T, int Radix, unsigned MinDigits, int MaxDigits>
inline std::string
- parser_name(uint_parser<T, Radix, MinDigits, MaxDigits> const& p)
+ parser_name(uint_parser<T, Radix, MinDigits, MaxDigits> const&)
{
BOOST_SPIRIT_SSTREAM stream;
stream << Radix << ", " << MinDigits << ", " << MaxDigits;
@@ -106,7 +106,7 @@
template <typename T, int Radix, unsigned MinDigits, int MaxDigits>
inline std::string
- parser_name(int_parser<T, Radix, MinDigits, MaxDigits> const& p)
+ parser_name(int_parser<T, Radix, MinDigits, MaxDigits> const&)
{
BOOST_SPIRIT_SSTREAM stream;
stream << Radix << ", " << MinDigits << ", " << MaxDigits;
@@ -117,7 +117,7 @@
template <typename T, typename RealPoliciesT>
inline std::string
- parser_name(real_parser<T, RealPoliciesT> const& p)
+ parser_name(real_parser<T, RealPoliciesT> const&)
{
return std::string("real_parser");
}
@@ -218,7 +218,7 @@
// from parser.hpp
template <typename DerivedT>
inline std::string
- parser_name(parser<DerivedT> const& p)
+ parser_name(parser<DerivedT> const&)
{
return std::string("parser");
}
@@ -227,7 +227,7 @@
// from primitives.hpp
template <typename DerivedT>
inline std::string
- parser_name(char_parser<DerivedT> const &p)
+ parser_name(char_parser<DerivedT> const &)
{
return std::string("char_parser");
}
|