Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:
| OK, I made some progress with the handling of streams, but now I am
| blocked by
|
| cxx: Error: ../../../lyx-devel/src/mathed/../support/lyxstring.h, line 155:
| function "lyxstring::lyxstring()" was referenced but not defined
| inline lyxstring();
This is a bug in lyxstring.h. Fixed.
| cxx: Error: ../../../lyx-devel/src/mathed/../support/lyxstring.h, line 270:
| function "lyxstring::operator+=(lyxstring::value_type)" was
| referenced but not defined
| inline lyxstring & operator+=(value_type);
This is a bug too. Fixed.
| Is it really legal to declare an inline function without a definition?
Only if you provide the definition later in the same file.
I guess that at some time these functions were in lyxstring.h and
later got moved...and egcs did not bitch about the extra inlines.
Lgb