Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Console / Parse.ih
index fffaec2..baedd18 100644 (file)
@@ -44,7 +44,7 @@
 
 #include <senf/Utils/Phoenix.hh>
 
-///////////////////////////////ih.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace console {
@@ -82,18 +82,18 @@ namespace detail {
 
     ::phoenix::function<PositionOf> const positionOf;
 
-    ///////////////////////////////////////////////////////////////////////////
+    //-/////////////////////////////////////////////////////////////////////////////////////////////
     // Grammar
 
     template <class ParseDispatcher>
     struct CommandGrammar : boost_spirit::grammar<CommandGrammar<ParseDispatcher> >
     {
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         // Start rules
 
         enum { CommandParser, SkipParser, ArgumentsParser, PathParser };
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         // The parse context (variables needed while parsing)
 
         typedef Token::TokenType TokenType;
@@ -108,17 +108,17 @@ namespace detail {
 
         Context & context;
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         // Configuration
 
         bool incremental;
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         // Dispatching semantic actions
 
         ParseDispatcher & dispatcher;
 
-        //////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         // charachter sets
 
         static boost_spirit::chset<> special_p;
@@ -128,7 +128,7 @@ namespace detail {
         static boost_spirit::chset<> word_p;
         static boost_spirit::distinct_parser<> keyword_p;
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
         // Errors
 
         enum Errors {
@@ -138,7 +138,7 @@ namespace detail {
             QuoteExpected
         };
 
-        ///////////////////////////////////////////////////////////////////////////
+        //-/////////////////////////////////////////////////////////////////////////////////////////
 
         CommandGrammar(ParseDispatcher & d, Context & c)
             : context(c), incremental(false), dispatcher(d) {}
@@ -174,7 +174,7 @@ namespace detail {
                 assertion<Errors> closing_paren_expected      (ClosingParenExpected);
                 assertion<Errors> quote_expected              (QuoteExpected);
 
-                ///////////////////////////////////////////////////////////////////
+                //-/////////////////////////////////////////////////////////////////////////////////
                 // Spirit grammar
                 //
                 // Syntax summary:
@@ -399,7 +399,7 @@ namespace detail {
                     =    self.space_p | comment_p('#')
                     ;
 
-                ///////////////////////////////////////////////////////////////////
+                //-/////////////////////////////////////////////////////////////////////////////////
 
                 start_parsers(
                     command,            // CommandParser
@@ -447,7 +447,7 @@ namespace detail {
 
 }}}
 
-///////////////////////////////ih.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #endif
 
 \f