diff options
author | Ally Donaldson <unknown> | 2013-07-22 22:30:46 +0100 |
---|---|---|
committer | Ally Donaldson <unknown> | 2013-07-22 22:30:46 +0100 |
commit | 793c0c0ded44401a1d6ef1bf494dd0a3d0b8dc43 (patch) | |
tree | 2187085433b50195a7e2783e27d0386187806378 /Source/VCExpr | |
parent | 48731a5c9679efa8bcf7920c279108927a85f2f1 (diff) |
RESeq: farewell
Diffstat (limited to 'Source/VCExpr')
-rw-r--r-- | Source/VCExpr/Boogie2VCExpr.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/VCExpr/Boogie2VCExpr.cs b/Source/VCExpr/Boogie2VCExpr.cs index c6cf5221..6dc69528 100644 --- a/Source/VCExpr/Boogie2VCExpr.cs +++ b/Source/VCExpr/Boogie2VCExpr.cs @@ -794,9 +794,9 @@ namespace Microsoft.Boogie.VCExprAST { Contract.Assert(false);
throw new cce.UnreachableException();
}
- public override RESeq VisitRESeq(RESeq reSeq) {
+ public override List<RE> VisitRESeq(List<RE> reSeq) {
//Contract.Requires(reSeq != null);
- Contract.Ensures(Contract.Result<RESeq>() != null);
+ Contract.Ensures(Contract.Result<List<RE>>() != null);
Contract.Assert(false);
throw new cce.UnreachableException();
}
|