memononen / nanovg

Antialiased 2D vector drawing library on top of OpenGL for UI and visualizations.
zlib License
5.06k stars 767 forks source link

Fixed Signed/Unsigned Comparison Warning #573

Closed geoffthemedio closed 4 years ago

geoffthemedio commented 4 years ago

In Visual Studio 17, I get warnings related to these variables:

fontstash.h(241): warning C4018: '<': signed/unsigned mismatch
fontstash.h(242): warning C4018: '<': signed/unsigned mismatch

Making them unsigned fixes it.

memononen commented 4 years ago

Thanks for the fix!