aboutsummaryrefslogtreecommitdiff
path: root/include/marisa/scoped-array.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/marisa/scoped-array.h')
-rw-r--r--include/marisa/scoped-array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/marisa/scoped-array.h b/include/marisa/scoped-array.h
index 12b5b9e..34cefa4 100644
--- a/include/marisa/scoped-array.h
+++ b/include/marisa/scoped-array.h
@@ -16,7 +16,7 @@ class scoped_array {
}
void reset(T *array = NULL) {
- MARISA_THROW_IF((array != NULL) && (array == array_), MARISA_RESET_ERROR);
+ MARISA_DEBUG_IF((array != NULL) && (array == array_), MARISA_RESET_ERROR);
scoped_array(array).swap(*this);
}