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 a02c079 commit 0b8b7f9Copy full SHA for 0b8b7f9
src/mp/gen.cpp
@@ -650,7 +650,7 @@ int main(int argc, char** argv)
650
} else {
651
throw std::runtime_error(std::string("Failed to open src_prefix prefix directory: ") + argv[1]);
652
}
653
- for (size_t i = 4; i < argc; ++i) {
+ for (int i = 4; i < argc; ++i) {
654
KJ_IF_MAYBE(dir, fs->getRoot().tryOpenSubdir(cwd.evalNative(argv[i]))) {
655
import_paths.emplace_back(argv[i]);
656
import_dirs.emplace_back(kj::mv(*dir));
0 commit comments