summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/StratifiedVC.cs
diff options
context:
space:
mode:
authorGravatar akashlal <unknown>2014-09-25 10:19:52 +0530
committerGravatar akashlal <unknown>2014-09-25 10:19:52 +0530
commit9897cb74c1f9e7139b9a1d890aca4168cfd95326 (patch)
tree7ea0da76e890e258986589fe2c802baf30bd9c7c /Source/VCGeneration/StratifiedVC.cs
parentaca88ae4e5431df0c8e3c1c7cd8b8d98f37ff280 (diff)
Lets have a setter for TopLevelDeclarations as well
Diffstat (limited to 'Source/VCGeneration/StratifiedVC.cs')
-rw-r--r--Source/VCGeneration/StratifiedVC.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/StratifiedVC.cs b/Source/VCGeneration/StratifiedVC.cs
index e8194891..5d01f2c1 100644
--- a/Source/VCGeneration/StratifiedVC.cs
+++ b/Source/VCGeneration/StratifiedVC.cs
@@ -2144,7 +2144,7 @@ namespace VC {
protected override HashSet<VCExprVar> CombineResults(List<HashSet<VCExprVar>> results, bool arg) {
var ret = new HashSet<VCExprVar>();
- results.ForEach(s => ret.UnionWith(s));
+ results.Iter(s => ret.UnionWith(s));
return ret;
}
}