lte module coding style issues pointed out by Mathieu

This commit is contained in:
Nicola Baldo
2012-03-24 11:21:20 +01:00
parent b1ca374571
commit e28017e76a
3 changed files with 5 additions and 4 deletions

View File

@@ -36,8 +36,9 @@ TypeId
GtpuHeader::GetTypeId (void)
{
static TypeId tid =
TypeId ("ns3::GtpuHeader").SetParent<Header> ().AddConstructor<
GtpuHeader> ();
TypeId ("ns3::GtpuHeader")
.SetParent<Header> ()
.AddConstructor<GtpuHeader> ();
return tid;
}
GtpuHeader::GtpuHeader ()

View File

@@ -71,6 +71,6 @@ private:
};
}; // namespace ns3
} // namespace ns3
#endif // LTE_PDCP_HEADER_H

View File

@@ -20,7 +20,7 @@
#ifndef LTE_RADIO_BEARER_TAG_H
#define LTE_RADIO_BEARER_TAG_H
#include "ns3/packet.h"
#include "ns3/tag.h"
namespace ns3 {