3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-17 09:48:32 +00:00

.NET API: bugfix.

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2012-12-04 19:32:46 +00:00
parent 4d1d784a1c
commit acd251e554
3 changed files with 68 additions and 2 deletions

View file

@ -24,7 +24,7 @@ using System.Threading;
using System.Diagnostics.Contracts;
namespace Microsoft.Z3
{
{
[ContractClass(typeof(DecRefQueueContracts))]
internal abstract class IDecRefQueue
{
@ -35,7 +35,7 @@ namespace Microsoft.Z3
{
Contract.Invariant(this.m_queue != null);
}
#endregion
readonly internal protected Object m_lock = new Object();