On Mon, Nov 05, 2007 at 07:55:34AM -0000, [EMAIL PROTECTED] wrote:
> Author: spitz
> Date: Mon Nov  5 08:55:32 2007
> New Revision: 21426
> 
> URL: http://www.lyx.org/trac/changeset/21426
> Log:
> * src/mathed/MathParser.cpp (getChar):
>       - return 0 instead of char_type(), which is unpredictable.

Sorry for nitpicking:

        char_type c;
        return c;

is 'unpredictably'.


        return char_type();

is equivalent to

        return 0;

and, for that matter, to

        return char_type(0);

and well-defined.

Andre'  

Reply via email to