mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 01:55:32 +00:00
12 lines
282 B
Java
12 lines
282 B
Java
package com.microsoft.z3;
|
|
|
|
public class ConstructorDecRefQueue extends IDecRefQueue<Constructor> {
|
|
public ConstructorDecRefQueue() {
|
|
super();
|
|
}
|
|
|
|
@Override
|
|
protected void decRef(Context ctx, long obj) {
|
|
Native.delConstructor(ctx.nCtx(), obj);
|
|
}
|
|
}
|