3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-15 17:49:59 +00:00

Fix build: use unquoted TRACE tag identifier instead of string literal

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-12 18:27:36 +00:00
parent 7692dfc7d6
commit 56c88022e2

View file

@ -172,7 +172,7 @@ public:
func_decl* fn = nullptr;
func_decl* inv = nullptr;
if (is_axiom(d.fml(), fn, inv)) {
TRACE("injectivity", tout << "Marking " << fn->get_name() << " as injective\n";);
TRACE(injectivity, tout << "Marking " << fn->get_name() << " as injective\n";);
m_map.insert(fn, inv);
}
}