summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorGravatar mikebarnett <unknown>2010-08-28 04:58:50 +0000
committerGravatar mikebarnett <unknown>2010-08-28 04:58:50 +0000
commite9a2e2bb8ff871295a8e80d1809c8400ec67344b (patch)
tree0e1b239634e0bf26389ebc986b920ef72022613f /Source
parent58fc5cfba0909307c26a9b32fab242fadd54af55 (diff)
Added a constructor to a contract class otherwise the compiler complained about the default nullary one calling its base class nullary ctor, and there wasn't one.
Diffstat (limited to 'Source')
-rw-r--r--Source/Provers/Simplify/Prover.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Provers/Simplify/Prover.cs b/Source/Provers/Simplify/Prover.cs
index 595560ed..d49b10e1 100644
--- a/Source/Provers/Simplify/Prover.cs
+++ b/Source/Provers/Simplify/Prover.cs
@@ -417,6 +417,7 @@ namespace Microsoft.Boogie.Simplify {
}
[ContractClassFor(typeof(ProverProcess))]
public abstract class ProverProcessContracts : ProverProcess {
+ private ProverProcessContracts() : base(null, null) { }
public override string OptionComments() {
Contract.Ensures(Contract.Result<string>() != null);
throw new NotImplementedException();