Not sure where to even begin looking at libeval since it looks scary but
MSVC complains:

D:\kicad-source-mirror\common\libeval\numeric_evaluator.cpp(216): warning
C4805: '==': unsafe mix of type 'char' and type 'bool' in operation

which is:

      auto ch = clToken.input[clToken.pos];
      do {
         if (ch == isDecSep(ch) && sepCount) break;


ch is a char

isDecSep returns bool

char == bool?



-- 
Mark
_______________________________________________
Mailing list: https://launchpad.net/~kicad-developers
Post to     : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp

Reply via email to