Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / MPEGDVBBundle / GREPacket.cc
index 971bc58..44ff1ac 100644 (file)
@@ -32,7 +32,7 @@
 #include <senf/Packets/DefaultBundle/IPv4Packet.hh>
 
 #define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 SENF_PACKET_REGISTRY_REGISTER( senf::EtherTypes, 0x6558, senf::EthernetPacket );
 SENF_PACKET_REGISTRY_REGISTER( senf::IpTypes, 47, senf::GREPacket );
@@ -41,12 +41,11 @@ prefix_ void senf::GREPacketType::dump(packet p, std::ostream & os)
 {
     boost::io::ios_all_saver ias(os);
     os << "GRE Encapsulation:\n"
-       <<     "  checksum_present        : " << p->checksum_present() << "\n"
-       <<     "  protocol_type           : 0x" << std::hex << p->protocol_type() << "\n"
-       ;
+       << senf::fieldName("checksum_present")          << p->checksum_present() << "\n"
+       << senf::fieldName("protocol_type")             << "0x" << std::hex << p->protocol_type() << "\n";
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f