From d652155ae013f36a1ee17653a8e458baad2d9c2c Mon Sep 17 00:00:00 2001 From: Checkmate50 Date: Mon, 6 Jun 2016 23:14:18 -0600 Subject: Merging complete. Everything looks good *crosses fingers* --- Source/Model/ModelParser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Model/ModelParser.cs') diff --git a/Source/Model/ModelParser.cs b/Source/Model/ModelParser.cs index 3b9fbb6f..b966d649 100644 --- a/Source/Model/ModelParser.cs +++ b/Source/Model/ModelParser.cs @@ -66,8 +66,8 @@ namespace Microsoft.Boogie string s = o as string; if (s != null) return GetElt (s); - List os = (List)o; - if (!(os[0] is string)) + List os = (List)o; + if (!(os[0] is string)) os.Insert(0, "_"); // KLM: fix crash on ((as const (Array Int Int)) 0) List args = new List (); for (int i = 1; i < os.Count; i++) { -- cgit v1.2.3