diff --git boost/spirit/home/classic/core/composite/no_actions.hpp boost/spirit/home/classic/core/composite/no_actions.hpp
index 638a297..60386cf 100644
|
|
|
struct no_actions_action_policy:
|
| 38 | 38 | template<typename ActorT, typename AttrT, typename IteratorT> |
| 39 | 39 | void |
| 40 | 40 | do_action( |
| 41 | | ActorT const& actor, |
| 42 | | AttrT& val, |
| 43 | | IteratorT const& first, |
| 44 | | IteratorT const& last) const |
| | 41 | ActorT const&, |
| | 42 | AttrT&, |
| | 43 | IteratorT const&, |
| | 44 | IteratorT const&) const |
| 45 | 45 | {} |
| 46 | 46 | }; |
| 47 | 47 | |
diff --git boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp
index 3b25b3d..957b853 100644
|
|
|
struct grammar_definition
|
| 83 | 83 | { // Does _not_ copy the helpers member ! |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | | grammar_helper_list& operator=(grammar_helper_list const& x) |
| | 86 | grammar_helper_list& operator=(grammar_helper_list const&) |
| 87 | 87 | { // Does _not_ copy the helpers member ! |
| 88 | 88 | return *this; |
| 89 | 89 | } |
diff --git boost/spirit/home/classic/meta/impl/refactoring.ipp boost/spirit/home/classic/meta/impl/refactoring.ipp
index 61cc6b5..af7ec11 100644
|
|
|
namespace impl {
|
| 324 | 324 | > |
| 325 | 325 | static typename parser_result<ParserT, ScannerT>::type |
| 326 | 326 | parse(ParserT const &, ScannerT const& scan, ActionT const &action, |
| 327 | | NestedT const& nested_d) |
| | 327 | NestedT const&) |
| 328 | 328 | { |
| 329 | 329 | return action.parse(scan); |
| 330 | 330 | } |
diff --git boost/spirit/home/classic/phoenix/tuples.hpp boost/spirit/home/classic/phoenix/tuples.hpp
index 50cec6b..9cbdde9 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&) { 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..dd7fc2e 100644
|
|
|
inline chset<CharT>::chset(anychar_parser /*arg*/)
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | template <typename CharT> |
| 132 | | inline chset<CharT>::chset(nothing_parser arg_) |
| | 132 | inline chset<CharT>::chset(nothing_parser) |
| 133 | 133 | : ptr(new basic_chset<CharT>()) {} |
| 134 | 134 | |
| 135 | 135 | template <typename CharT> |
| … |
… |
chset<CharT>::operator=(CharT rhs)
|
| 182 | 182 | |
| 183 | 183 | template <typename CharT> |
| 184 | 184 | inline chset<CharT>& |
| 185 | | chset<CharT>::operator=(anychar_parser rhs) |
| | 185 | chset<CharT>::operator=(anychar_parser) |
| 186 | 186 | { |
| 187 | 187 | utility::impl::detach_clear(ptr); |
| 188 | 188 | ptr->set( |
| … |
… |
chset<CharT>::operator=(anychar_parser rhs)
|
| 194 | 194 | |
| 195 | 195 | template <typename CharT> |
| 196 | 196 | inline chset<CharT>& |
| 197 | | chset<CharT>::operator=(nothing_parser rhs) |
| | 197 | chset<CharT>::operator=(nothing_parser) |
| 198 | 198 | { |
| 199 | 199 | utility::impl::detach_clear(ptr); |
| 200 | 200 | return *this; |