summaryrefslogtreecommitdiff
path: root/boost/wave/grammars/cpp_defined_grammar_gen.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/wave/grammars/cpp_defined_grammar_gen.hpp')
-rw-r--r--boost/wave/grammars/cpp_defined_grammar_gen.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/boost/wave/grammars/cpp_defined_grammar_gen.hpp b/boost/wave/grammars/cpp_defined_grammar_gen.hpp
index fd41a2bd3f..2b454a3287 100644
--- a/boost/wave/grammars/cpp_defined_grammar_gen.hpp
+++ b/boost/wave/grammars/cpp_defined_grammar_gen.hpp
@@ -33,7 +33,7 @@
///////////////////////////////////////////////////////////////////////////////
namespace boost {
-namespace wave {
+namespace wave {
namespace grammars {
template <typename LexIteratorT>
@@ -43,9 +43,9 @@ struct BOOST_WAVE_DECL defined_grammar_gen
typedef std::list<token_type, boost::fast_pool_allocator<token_type> >
token_sequence_type;
-// The parse_operator_defined function is instantiated manually twice to
-// simplify the explicit specialization of this template. This way the user
-// has only to specify one template parameter (the lexer iterator type) to
+// The parse_operator_defined function is instantiated manually twice to
+// simplify the explicit specialization of this template. This way the user
+// has only to specify one template parameter (the lexer iterator type) to
// correctly formulate the required explicit specialization.
// This results in no code overhead, because otherwise the function would be
// generated by the compiler twice anyway.
@@ -57,14 +57,14 @@ struct BOOST_WAVE_DECL defined_grammar_gen
typedef boost::wave::util::unput_queue_iterator<
LexIteratorT, token_type, token_sequence_type>
iterator2_type;
-
+
// parse the operator defined and return the found qualified name
- static boost::spirit::classic::parse_info<iterator1_type>
- parse_operator_defined (iterator1_type const &first,
+ static boost::spirit::classic::parse_info<iterator1_type>
+ parse_operator_defined (iterator1_type const &first,
iterator1_type const &last, token_sequence_type &found_qualified_name);
- static boost::spirit::classic::parse_info<iterator2_type>
- parse_operator_defined (iterator2_type const &first,
+ static boost::spirit::classic::parse_info<iterator2_type>
+ parse_operator_defined (iterator2_type const &first,
iterator2_type const &last, token_sequence_type &found_qualified_name);
};