wifi: QosTag printing needs a cast to int

This commit is contained in:
Tommaso Pecorella
2016-06-20 00:00:15 +02:00
parent c1388be030
commit 4937734929

View File

@@ -95,7 +95,7 @@ QosTag::GetTid () const
void
QosTag::Print (std::ostream &os) const
{
os << "Tid=" << m_tid;
os << "Tid=" << static_cast<int> (m_tid);
}
} // namespace ns3