diff --git a/library/PolyVoxCore/source/Region.cpp b/library/PolyVoxCore/source/Region.cpp index ea79ced2..8c6fa66d 100644 --- a/library/PolyVoxCore/source/Region.cpp +++ b/library/PolyVoxCore/source/Region.cpp @@ -79,7 +79,7 @@ namespace PolyVox //////////////////////////////////////////////////////////////////////////////// void Region::accumulate(const Region& reg) { - assert(reg.isValid(), "The result of accumulating an invalid region is not defined."); + assert(reg.isValid()); //The result of accumulating an invalid region is not defined. m_iLowerX = ((std::min)(m_iLowerX, reg.getLowerX())); m_iLowerY = ((std::min)(m_iLowerY, reg.getLowerY()));