We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-Wsign-compare
1 parent 477405e commit 7452dddCopy full SHA for 7452ddd
src/mp/gen.cpp
@@ -630,7 +630,7 @@ int main(int argc, char** argv)
630
} else {
631
throw std::runtime_error(std::string("Failed to open src_prefix prefix directory: ") + argv[1]);
632
}
633
- for (size_t i = 4; i < argc; ++i) {
+ for (size_t i = 4; i < static_cast<size_t>(argc); ++i) {
634
KJ_IF_MAYBE(dir, fs->getRoot().tryOpenSubdir(cwd.evalNative(argv[i]))) {
635
import_paths.emplace_back(argv[i]);
636
import_dirs.emplace_back(kj::mv(*dir));
0 commit comments