From fca8e542890c841ac95209c7714c591308372491 Mon Sep 17 00:00:00 2001 From: Thibaut Cuvelier Date: Sun, 22 Jan 2023 02:45:25 +0100 Subject: [PATCH] InsetMathHull: add a missing const (plus strange indentation fixed). --- src/mathed/InsetMathHull.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index 9c4e6e91fd..537d6670c5 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -2582,7 +2582,7 @@ void InsetMathHull::mathmlize(MathMLStream & ms) const void InsetMathHull::mathAsLatex(TeXMathStream & os) const { MathEnsurer ensurer(os, false); - bool havenumbers = haveNumbers(); + bool const havenumbers = haveNumbers(); bool const havetable = havenumbers || nrows() > 1 || ncols() > 1; if (!havetable) { @@ -2603,7 +2603,7 @@ void InsetMathHull::mathAsLatex(TeXMathStream & os) const docstring const & num = numbers_[row]; if (!num.empty()) os << '(' << num << ')'; - os << ""; + os << ""; } os << ""; } -- 2.39.5