summaryrefslogtreecommitdiff
path: root/Source/VCExpr/VCExprASTVisitors.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-07-23 10:48:24 -0700
committerGravatar wuestholz <unknown>2013-07-23 10:48:24 -0700
commitd9f68c9878b0a15d8da7108df211f4fd2f523434 (patch)
treecfb7a51640dcae7e671f551a6db4b9721114b54a /Source/VCExpr/VCExprASTVisitors.cs
parent34ff60de0ab0a05c85e6af50ed6d1a93805e040b (diff)
Minor fix
Diffstat (limited to 'Source/VCExpr/VCExprASTVisitors.cs')
-rw-r--r--Source/VCExpr/VCExprASTVisitors.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/VCExpr/VCExprASTVisitors.cs b/Source/VCExpr/VCExprASTVisitors.cs
index 10c06abf..02220057 100644
--- a/Source/VCExpr/VCExprASTVisitors.cs
+++ b/Source/VCExpr/VCExprASTVisitors.cs
@@ -1072,13 +1072,13 @@ namespace Microsoft.Boogie.VCExprAST {
public bool TermSubstIsEmpty {
get {
- return TermSubsts.All(dict => dict.Count == 0);
+ return TermSubsts.All(dict => !dict.Any());
}
}
public bool TypeSubstIsEmpty {
get {
- return TypeSubsts.All(dict => dict.Count == 0); ;
+ return TypeSubsts.All(dict => !dict.Any());
}
}