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
This commit is contained in:
André Pönitz 2002-08-29 13:56:32 +00:00
parent 65e2f0f63d
commit d50d8be29e

View File

@ -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();
}