Andre Poenitz <[EMAIL PROTECTED]> writes:
| egcs-2.91.66 does not like it.
|
| If I remove the 'using std::getline' lines, everything is fine.
| Does this mean we even don't support egcs anymore?
What was the error again?
I am pretty sure that the reason for the error is
getline(istream &, lyxstring);
and since we typedef lyxstring string the std::string makes this
ambigous.
the solution is probably to only have "using std::getline" if the
systems string is used.
Can you give a dump of the actuall errors again?
Lgb