Fixed AxisAlignedBox::ExtendTo warning

Former-commit-id: 696ce9e1625df33857425e0d758ee135d53c5064
This commit is contained in:
Lynix 2013-02-18 04:02:54 +01:00
parent ee7a9c572b
commit 8b192a8cae
1 changed files with 0 additions and 4 deletions

View File

@ -84,8 +84,6 @@ void NzAxisAlignedBox::ExtendTo(const NzAxisAlignedBox& box)
operator=(box);
break;
}
NazaraError("Extend type not handled (0x" + NzString::Number(m_extend, 16) + ')');
}
void NzAxisAlignedBox::ExtendTo(const NzVector3f& vector)
@ -105,8 +103,6 @@ void NzAxisAlignedBox::ExtendTo(const NzVector3f& vector)
m_cube.Set(vector, vector);
break;
}
NazaraError("Extend type not handled (0x" + NzString::Number(m_extend, 16) + ')');
}
NzVector3f NzAxisAlignedBox::GetCorner(nzCorner corner) const