summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2014-10-02 17:57:25 -0400
committerMorgan Deters <mdeters@cs.nyu.edu>2014-10-02 17:57:25 -0400
commit96bbad88330fd942895dfb65a7947edfe77a85b7 (patch)
treefee6814d111097672a1f97338dd172634bec88fc /src/util
parentb3c760042dc743bea1620662aed5310121fc4bd0 (diff)
parentc9e861d2a6964633d12448966e979299c8793466 (diff)
Merge branch '1.4.x'.
Diffstat (limited to 'src/util')
-rw-r--r--src/util/array_store_all.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/array_store_all.h b/src/util/array_store_all.h
index bccefdd58..b1d624266 100644
--- a/src/util/array_store_all.h
+++ b/src/util/array_store_all.h
@@ -46,7 +46,7 @@ public:
// because this check is done in production builds too
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.getType().isComparableTo(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");
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback