Removed exception specifiers from PolyVox. See http://stackoverflow.com/questions/88573/should-i-use-an-exception-specifier-in-c
They are also deprecated in C++11 anyway.
This commit is contained in:
@@ -45,9 +45,9 @@ namespace PolyVox
|
||||
Region(int32_t iLowerX, int32_t iLowerY, int32_t iLowerZ, int32_t iUpperX, int32_t iUpperY, int32_t iUpperZ);
|
||||
|
||||
///Equality Operator.
|
||||
bool operator==(const Region& rhs) const throw();
|
||||
bool operator==(const Region& rhs) const;
|
||||
///Inequality Operator.
|
||||
bool operator!=(const Region& rhs) const throw();
|
||||
bool operator!=(const Region& rhs) const;
|
||||
|
||||
const Vector3DInt32& getLowerCorner(void) const;
|
||||
const Vector3DInt32& getUpperCorner(void) const;
|
||||
|
||||
Reference in New Issue
Block a user