diff --git boost/spirit/home/classic/core/composite/no_actions.hpp boost/spirit/home/classic/core/composite/no_actions.hpp
index 638a297..aa42f96 100644
|
|
|
struct no_actions_action_policy:
|
| 42 | 42 | AttrT& val, |
| 43 | 43 | IteratorT const& first, |
| 44 | 44 | IteratorT const& last) const |
| 45 | | {} |
| | 45 | { |
| | 46 | (void) actor; |
| | 47 | (void) val; |
| | 48 | (void) first; |
| | 49 | (void) last; |
| | 50 | } |
| 46 | 51 | }; |
| 47 | 52 | |
| 48 | 53 | //----------------------------------------------------------------------------- |
diff --git boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp
index 3b25b3d..29951a6 100644
|
|
|
struct grammar_definition
|
| 85 | 85 | |
| 86 | 86 | grammar_helper_list& operator=(grammar_helper_list const& x) |
| 87 | 87 | { // Does _not_ copy the helpers member ! |
| | 88 | (void) x; |
| 88 | 89 | return *this; |
| 89 | 90 | } |
| 90 | 91 | |
diff --git boost/spirit/home/classic/meta/impl/refactoring.ipp boost/spirit/home/classic/meta/impl/refactoring.ipp
index 61cc6b5..f5a3039 100644
|
|
|
namespace impl {
|
| 326 | 326 | parse(ParserT const &, ScannerT const& scan, ActionT const &action, |
| 327 | 327 | NestedT const& nested_d) |
| 328 | 328 | { |
| | 329 | (void) nested_d; |
| 329 | 330 | return action.parse(scan); |
| 330 | 331 | } |
| 331 | 332 | }; |
diff --git boost/spirit/home/classic/phoenix/tuples.hpp boost/spirit/home/classic/phoenix/tuples.hpp
index 50cec6b..78ffc75 100644
|
|
|
struct tuple_element
|
| 211 | 211 | typedef nil_t& rtype; |
| 212 | 212 | typedef nil_t const& crtype; |
| 213 | 213 | |
| 214 | | static nil_t get(TupleT const& t) { return nil_t(); } |
| | 214 | static nil_t get(TupleT const& t) { (void) t; return nil_t(); } |
| 215 | 215 | }; |
| 216 | 216 | |
| 217 | 217 | ////////////////////////////////// |
diff --git boost/spirit/home/classic/utility/impl/chset.ipp boost/spirit/home/classic/utility/impl/chset.ipp
index 3017035..cc85064 100644
|
|
|
inline chset<CharT>::chset(anychar_parser /*arg*/)
|
| 130 | 130 | |
| 131 | 131 | template <typename CharT> |
| 132 | 132 | inline chset<CharT>::chset(nothing_parser arg_) |
| 133 | | : ptr(new basic_chset<CharT>()) {} |
| | 133 | : ptr(new basic_chset<CharT>()) { (void) arg_; } |
| 134 | 134 | |
| 135 | 135 | template <typename CharT> |
| 136 | 136 | inline chset<CharT>::chset(chlit<CharT> const& arg_) |
| … |
… |
template <typename CharT>
|
| 184 | 184 | inline chset<CharT>& |
| 185 | 185 | chset<CharT>::operator=(anychar_parser rhs) |
| 186 | 186 | { |
| | 187 | (void) rhs; |
| 187 | 188 | utility::impl::detach_clear(ptr); |
| 188 | 189 | ptr->set( |
| 189 | 190 | (std::numeric_limits<CharT>::min)(), |
| … |
… |
template <typename CharT>
|
| 196 | 197 | inline chset<CharT>& |
| 197 | 198 | chset<CharT>::operator=(nothing_parser rhs) |
| 198 | 199 | { |
| | 200 | (void) rhs; |
| 199 | 201 | utility::impl::detach_clear(ptr); |
| 200 | 202 | return *this; |
| 201 | 203 | } |
diff --git boost/token_functions.hpp boost/token_functions.hpp
index 4d1a1df..203f6b3 100644
|
|
|
namespace boost{
|
| 309 | 309 | template <> |
| 310 | 310 | struct assign_or_plus_equal<std::input_iterator_tag> { |
| 311 | 311 | template<class Iterator, class Token> |
| 312 | | static void assign(Iterator b, Iterator e, Token &t) { } |
| | 312 | static void assign(Iterator b, Iterator e, Token &t) { |
| | 313 | (void) b; |
| | 314 | (void) e; |
| | 315 | (void) t; |
| | 316 | } |
| 313 | 317 | template<class Token, class Value> |
| 314 | 318 | static void plus_equal(Token &t, const Value &v) { |
| 315 | 319 | t += v; |