From: André Pönitz Date: Thu, 29 Aug 2002 13:56:32 +0000 (+0000) Subject: add that stupid string(os.c_str()) hack... X-Git-Tag: 1.6.10~18396 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d50d8be29ea391e61a279b9369e1163c6224687f;p=features.git 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 --- 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(); }