summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--svl/source/items/nranges.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/nranges.cxx b/svl/source/items/nranges.cxx
index b3a7210f559e..c2c08cdfeb4c 100644
--- a/svl/source/items/nranges.cxx
+++ b/svl/source/items/nranges.cxx
@@ -17,7 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
+#include <cassert>
#include <vector>
// compiled via include from itemset.cxx only!
@@ -86,7 +86,7 @@ NUMTYPE InitializeRanges_Impl( NUMTYPE *&rpRanges, va_list pArgs,
aNumArr.push_back( nIns );
}
- DBG_ASSERT( bEndOfRange, "ungerade Anzahl von Which-Paaren!" );
+ assert( bEndOfRange ); // odd number of Which-IDs
// so, jetzt sind alle Bereiche vorhanden und
rpRanges = new NUMTYPE[ aNumArr.size() + 1 ];