From 9075fef193e6909b25e67ec9e6aa8dde1503c255 Mon Sep 17 00:00:00 2001 From: albert-github Date: Wed, 7 Oct 2020 10:06:16 +0200 Subject: Warnings during compilation of doctokinizer With the doctokinizer.l we get the warnings like: ``` doctokenizer.l(502): warning C4018: '<': signed/unsigned mismatch ``` The casting of `(int)` is also used on other places in this file like in `handleHtmlTag`. --- src/doctokenizer.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doctokenizer.l b/src/doctokenizer.l index 48d2fa4..1774788 100644 --- a/src/doctokenizer.l +++ b/src/doctokenizer.l @@ -84,7 +84,7 @@ static QStack g_lexerStack; static int g_yyLineNr = 0; -#define lineCount(s,len) do { for(int i=0;i