diff options
author | mikebarnett <unknown> | 2010-08-28 04:58:50 +0000 |
---|---|---|
committer | mikebarnett <unknown> | 2010-08-28 04:58:50 +0000 |
commit | e9a2e2bb8ff871295a8e80d1809c8400ec67344b (patch) | |
tree | 0e1b239634e0bf26389ebc986b920ef72022613f /Source/Provers/Simplify | |
parent | 58fc5cfba0909307c26a9b32fab242fadd54af55 (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/Provers/Simplify')
-rw-r--r-- | Source/Provers/Simplify/Prover.cs | 1 |
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();
|