Post by Uwe Stöhr"D:\LyXGit\Master\compile-result\src\LyX.vcxproj" (Standard target) (3) ->
(ClCompile target) ->
..\..\src\Paragraph.cpp(3855): warning C4018: '<': conflict between
'signed' and 'unsigned' [D:\LyXGit\Master\compile-resul\src\LyX.vcxproj]
Maybe this can be fixed before LyX 2.1.1 is released?
Not needed. Line 3855 contains only a closing brace '}' in 2.1 branch. The
warning makes sense if you look at master. There you have
if (pos < from + lyxrc.completion_minlength)
which is indeed a comparison between signed and unsigned values. I'll fix
that, but nothing needs to be done for 2.1.1.
Georg