From 999a92e3e6db13b804165c6f61abe24718b67cb5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Feb 2026 09:35:28 +0000 Subject: [PATCH] Revert prexpr to non-static for debugging availability Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com> --- src/ast/ast.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast/ast.cpp b/src/ast/ast.cpp index 21e587e31..b99e5223d 100644 --- a/src/ast/ast.cpp +++ b/src/ast/ast.cpp @@ -3502,7 +3502,7 @@ void scoped_mark::pop_scope(unsigned num_scopes) { // show an expr_ref on stdout -static void prexpr(expr_ref &e){ +void prexpr(expr_ref &e){ std::cout << mk_pp(e.get(), e.get_manager()) << std::endl; }