Z3
StatisticsDecRefQueue.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
20class StatisticsDecRefQueue extends IDecRefQueue<Statistics> {
21 public StatisticsDecRefQueue()
22 {
23 super();
24 }
25
26 @Override
27 protected void decRef(Context ctx, long obj) {
28 Native.statsDecRef(ctx.nCtx(), obj);
29 }
30}