summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/array_store_all.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/array_store_all.h b/src/util/array_store_all.h
index 277422ecf..7cfe2eab4 100644
--- a/src/util/array_store_all.h
+++ b/src/util/array_store_all.h
@@ -49,6 +49,7 @@ public:
CheckArgument(type.isArray(), type, "array store-all constants can only be created for array types, not `%s'", type.toString().c_str());
CheckArgument(expr.getType().isSubtypeOf(type.getConstituentType()), expr, "expr type `%s' does not match constituent type of array type `%s'", expr.getType().toString().c_str(), type.toString().c_str());
+ CheckArgument(expr.isConst(), expr, "ArrayStoreAll requires a constant expression");
}
~ArrayStoreAll() throw() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback