constify conversion operator

This commit is contained in:
Mathieu Lacage
2007-10-11 13:00:12 +02:00
parent b42e00961b
commit 8460428f2e
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ Mac48Address::IsMatchingType (const Address &address)
{
return address.CheckCompatible (GetType (), 6);
}
Mac48Address::operator Address ()
Mac48Address::operator Address () const
{
return ConvertTo ();
}