mirror of
https://github.com/Z3Prover/z3
synced 2025-06-07 06:33:23 +00:00
12 lines
298 B
Java
12 lines
298 B
Java
package com.microsoft.z3;
|
|
|
|
public class ConstructorListDecRefQueue extends IDecRefQueue<ConstructorList> {
|
|
public ConstructorListDecRefQueue() {
|
|
super();
|
|
}
|
|
|
|
@Override
|
|
protected void decRef(Context ctx, long obj) {
|
|
Native.delConstructorList(ctx.nCtx(), obj);
|
|
}
|
|
}
|