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

@@ -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;