From 08165f5367c2d535f0e9e523fe856d3261396851 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 4 Aug 2022 22:53:09 +0700 Subject: [PATCH] No need to return a const bool. --- src/smt/theory_lra.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smt/theory_lra.cpp b/src/smt/theory_lra.cpp index 0b9f4c072..2db7f2332 100644 --- a/src/smt/theory_lra.cpp +++ b/src/smt/theory_lra.cpp @@ -607,7 +607,7 @@ class theory_lra::imp { return v; } - bool const has_int() const { return lp().has_int_var(); } + bool has_int() const { return lp().has_int_var(); } lpvar register_theory_var_in_lar_solver(theory_var v) { lpvar lpv = lp().external_to_local(v);