Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / PacketParser.ih
index 00df8a8..fb3c511 100644 (file)
@@ -27,9 +27,9 @@
 #define IH_SENF_Packets_PacketParser_ 1
 
 // Custom includes
-#include "../Utils/mpl.hh"
+#include <senf/Utils/mpl.hh>
 
-///////////////////////////////ih.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 namespace detail {
@@ -38,12 +38,12 @@ namespace detail {
 
 #   ifndef DOXYGEN
 
-    // Use SFINAE to check, if Parser has an integer-valued fixed_bytes member. If not,
-    // 'Parser_TakeNum<Parser::fixed_bytes>' fails and the overload is removed from the overload
-    // set. 
+    // Use SFINAE to check, if Parser has an integer-valued init_bytes member. If not,
+    // 'Parser_TakeNum<Parser::init_bytes>' fails and the overload is removed from the overload
+    // set.
     template <class Parser>
     PacketParserBase::size_type packetParserSize(
-        Parser p, int, senf::mpl::take_uint<Parser::fixed_bytes> * = 0);
+        Parser p, int, senf::mpl::take_uint<Parser::init_bytes> * = 0);
 
     // An ellipsis is always the worst match. A call 'packetParserSize(p,0) will prefer above
     // overload if that is not disabled by SFINAE.
@@ -61,7 +61,7 @@ namespace detail {
     // This version of ParserInitBytes_Choose uses 'Parser::init_bytes' to provide 'value' (via
     // 'boost::integral_constant')
     template <class Parser, unsigned _>
-    struct ParserInitBytes_Choose 
+    struct ParserInitBytes_Choose
         : public boost::integral_constant<PacketParserBase::size_type, Parser::init_bytes> {};
     // ^^-- g++ error signaled here:
     //    error: 'fixed_bytes' is not a member of 'some-class-name'
@@ -72,7 +72,7 @@ namespace detail {
     // Either 'some-class-name' is not the class you wanted to use (it really is no parser) or you
     // left out either 'init_bytes' or 'fixed_bytes' when defining the parser. This will also
     // happen, if you forget to call 'SENF_PARSER_FINALIZE()' when defining a composite parser.
-    ///////////////////////////////////////////////////////////////////////////////////////////////
+    //-/////////////////////////////////////////////////////////////////////////////////////////////
 
     // If Parser::init_bytes is not defined, this specialization is chosen which instead uses
     // 'Parser::fixed_bytes'
@@ -100,7 +100,7 @@ namespace detail {
 
 }}
 
-///////////////////////////////ih.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #endif
 
 \f