Remove const that breaks binary compatibility (const are mangled too).
Thanks axeld to point at them. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8569 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -157,7 +157,7 @@ BArchivable *BNetEndpoint::Instantiate(BMessage *archive)
|
||||
// #pragma mark -
|
||||
|
||||
|
||||
status_t BNetEndpoint::InitCheck() const
|
||||
status_t BNetEndpoint::InitCheck()
|
||||
{
|
||||
return m_init;
|
||||
}
|
||||
@@ -169,13 +169,13 @@ int BNetEndpoint::Socket() const
|
||||
}
|
||||
|
||||
|
||||
const BNetAddress & BNetEndpoint::LocalAddr() const
|
||||
const BNetAddress & BNetEndpoint::LocalAddr()
|
||||
{
|
||||
return m_addr;
|
||||
}
|
||||
|
||||
|
||||
const BNetAddress & BNetEndpoint::RemoteAddr() const
|
||||
const BNetAddress & BNetEndpoint::RemoteAddr()
|
||||
{
|
||||
return m_peer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user