3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-21 07:54:42 +00:00

Revert prexpr to non-static for debugging availability

Co-authored-by: nunoplopes <2998477+nunoplopes@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-07 09:35:28 +00:00 committed by Nikolaj Bjorner
parent 21fd199062
commit 999a92e3e6

View file

@ -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;
}