Skip to content

Commit

Permalink
Last adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
AZero13 committed Oct 29, 2022
1 parent b58c252 commit 4a4a797
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vcpkg-test/files.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ namespace
// regular directory
fs.create_directory(base, ec);
CHECK_EC_ON_FILE(base, ec);
for (int i = 0; i < 5; ++i)
for (unsigned int i = 0; i < 5; ++i)
{
create_directory_tree(urbg, fs, base / get_random_filename(urbg), remaining_depth - 1);
}
Expand Down
2 changes: 1 addition & 1 deletion src/vcpkg/archives.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace
{
// MSI installation sometimes requires a global lock and fails if another installation is concurrent. Loop
// to enable retries.
for (int i = 0;; ++i)
for (unsigned int i = 0;; ++i)
{
// msiexec is a WIN32/GUI application, not a console application and so needs special attention to wait
// until it finishes (wrap in cmd /c).
Expand Down
2 changes: 1 addition & 1 deletion src/vcpkg/base/json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ namespace vcpkg::Json
case 'u':
{
char16_t code_unit = 0;
for (int i = 0; i < 4; ++i)
for (unsigned int i = 0; i < 4; ++i)
{
current = next();

Expand Down

0 comments on commit 4a4a797

Please sign in to comment.