src/internet/model/ipv6-packet-info-tag.cc
changeset 7176 9f2663992e99
parent 6967 51775b082612
child 7386 2310ed220a61
--- a/src/internet/model/ipv6-packet-info-tag.cc	Fri May 13 14:54:37 2011 -0400
+++ b/src/internet/model/ipv6-packet-info-tag.cc	Fri May 13 14:55:24 2011 -0400
@@ -25,7 +25,7 @@
 
 namespace ns3 {
 
-Ipv6PacketInfoTag::Ipv6PacketInfoTag ()  
+Ipv6PacketInfoTag::Ipv6PacketInfoTag ()
   : m_addr (Ipv6Address ()),
     m_ifindex (0),
     m_hoplimit (0),
@@ -88,7 +88,7 @@
   static TypeId tid = TypeId ("ns3::Ipv6PacketInfoTag")
     .SetParent<Tag> ()
     .AddConstructor<Ipv6PacketInfoTag> ()
-    ;
+  ;
   return tid;
 }
 TypeId
@@ -101,9 +101,9 @@
 Ipv6PacketInfoTag::GetSerializedSize (void) const
 { 
   return 16
-    + sizeof (uint8_t)
-    + sizeof (uint8_t)
-    + sizeof (uint8_t);
+         + sizeof (uint8_t)
+         + sizeof (uint8_t)
+         + sizeof (uint8_t);
 }
 void 
 Ipv6PacketInfoTag::Serialize (TagBuffer i) const
@@ -134,5 +134,5 @@
   os << ", TClass:" << (uint32_t) m_tclass;
   os << "] ";
 }
-}//namespace ns3
+} //namespace ns3