mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
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:
parent
65e2f0f63d
commit
d50d8be29e
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user