summaryrefslogtreecommitdiff
path: root/Source/Core/Util.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Util.cs')
-rw-r--r--Source/Core/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Util.cs b/Source/Core/Util.cs
index 4afd6f69..3b8412b9 100644
--- a/Source/Core/Util.cs
+++ b/Source/Core/Util.cs
@@ -487,7 +487,7 @@ namespace Microsoft.Boogie {
} else if (e is NAryExpr) {
NAryExpr ne = (NAryExpr)e;
IAppliable fun = ne.Fun;
- List<Expr> eSeq = ne.Args;
+ var eSeq = ne.Args;
if (fun != null) {
if ((fun.FunctionName == "$Length" || fun.FunctionName == "$StringLength") && eSeq.Count == 1) {
Expr e0 = eSeq[0];