build-cpp / cmkr

Modern build system based on CMake and TOML.
https://cmkr.build
MIT License
439 stars 27 forks source link

error: fix warning, signedness of comparison #60

Closed pmeerw closed 2 years ago

pmeerw commented 2 years ago

cmkr/src/error.cpp:23:24: warning: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ [-Wsign-compare] 23 | assert(i >= 0 && i < (sizeof(err_string) / sizeof(*(err_string))));

mrexodia commented 2 years ago

Thanks!