From: Richard Kimberly Heck Date: Thu, 5 Jan 2023 04:04:02 +0000 (-0500) Subject: Fix compilation problem X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=04025d0259cb556daf54bb74a01b9f9a615dcb77;p=features.git Fix compilation problem --- diff --git a/src/mathed/InsetMathDecoration.cpp b/src/mathed/InsetMathDecoration.cpp index 616d1f33d6..e0a5d85486 100644 --- a/src/mathed/InsetMathDecoration.cpp +++ b/src/mathed/InsetMathDecoration.cpp @@ -188,7 +188,7 @@ void InsetMathDecoration::infoize(odocstream & os) const namespace { struct Attributes { Attributes() : over(false) {} - Attributes(bool o, string_view entity) + Attributes(bool o, string const & entity) : over(o), entity(entity) {} bool over; string entity;