From d50d8be29ea391e61a279b9369e1163c6224687f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Thu, 29 Aug 2002 13:56:32 +0000 Subject: [PATCH] add that stupid string(os.c_str()) hack... Do we really need --with-included-strings anymore? git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5174 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_inset.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/math_inset.C b/src/mathed/math_inset.C index 40193c8f4a..1eb8465e99 100644 --- a/src/mathed/math_inset.C +++ b/src/mathed/math_inset.C @@ -291,7 +291,7 @@ string asString(MathArray const & ar) std::ostringstream os; WriteStream ws(os); ws << ar; - return os.str(); + return os.str().c_str(); } -- 2.39.5