From a418f0c30b8ea589e08cb8aa1c187ebb1f7003bd Mon Sep 17 00:00:00 2001 From: Murphy Berzish <murphy.berzish@gmail.com> Date: Tue, 2 May 2017 15:52:35 -0400 Subject: [PATCH] fix spacing --- src/smt/theory_arith_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smt/theory_arith_core.h b/src/smt/theory_arith_core.h index dd1924e44..5c652414a 100644 --- a/src/smt/theory_arith_core.h +++ b/src/smt/theory_arith_core.h @@ -3269,7 +3269,7 @@ namespace smt { template<typename Ext> bool theory_arith<Ext>::get_lower(enode * n, expr_ref & r) { theory_var v = n->get_th_var(get_id()); - bound * b = (v == null_theory_var) ? 0 : lower(v); + bound* b = (v == null_theory_var) ? 0 : lower(v); return b && to_expr(b->get_value(), is_int(v), r); }