mity / md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
MIT License
787 stars 146 forks source link

Build: Fix a few sign-comparison issues #75

Closed andponlin closed 5 years ago

andponlin commented 5 years ago

This will fix a couple of issues where the GCC compiler (in strict mode) is complaining with "error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]".

codecov[bot] commented 5 years ago

Codecov Report

Merging #75 into master will not change coverage. The diff coverage is 83.33%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #75   +/-   ##
=======================================
  Coverage   93.61%   93.61%           
=======================================
  Files           1        1           
  Lines        2617     2617           
=======================================
  Hits         2450     2450           
  Misses        167      167
Impacted Files Coverage Δ
md4c/md4c.c 93.61% <83.33%> (ø) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 9527913...46642c8. Read the comment docs.

mity commented 5 years ago

LGTM. Thanks.