Le 28/02/2019 à 09:33, Kornel Benko a écrit :
        Error   C2672
        'std::isalnum': no matching overloaded function found   
        LyX (applications\LyX\LyX)      
        C:\Users\Daniel\lyx\devel\lyx\src\lyxfind.cpp
        2866

The line in question reads:

        if (std::isalnum(t[pos+1])) {

Probably missing
        #include <ctype.h>
Could you please test?

Kornel, it would be better for consistency at least for now to stick to the functions defined in support/textutils.h. If you do not find there what you need please create a correct function.

Note that isalnum depends on the current locale, which is not a good idea at all. We want to use unicode stuff.

JMarc

Reply via email to