They are also deprecated in C++11 anyway.
This commit is contained in:
unknown
2012-11-09 14:04:01 +01:00
parent 5c88f2e49f
commit 17054c6747
12 changed files with 113 additions and 113 deletions

View File

@ -66,7 +66,7 @@ namespace PolyVox
\return true if the Regions match.
\see operator!=
*/
bool Region::operator==(const Region& rhs) const throw()
bool Region::operator==(const Region& rhs) const
{
return ((m_v3dLowerCorner == rhs.m_v3dLowerCorner) && (m_v3dUpperCorner == rhs.m_v3dUpperCorner));
}
@ -77,7 +77,7 @@ namespace PolyVox
\return true if the Regions do not match.
\see operator==
*/
bool Region::operator!=(const Region& rhs) const throw()
bool Region::operator!=(const Region& rhs) const
{
return !(*this == rhs);
}