aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_ci.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-15 20:18:39 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-15 20:18:39 -0800
commitb80cdd1118cec9ad9befdbbdded93a963877b994 (patch)
tree4d2f6c912be6b2898052105931af8e975f2a7004 /toolsrc/src/commands_ci.cpp
parent377f93f3e3ac4e3025837bcfd8cce6c4e6f34b04 (diff)
downloadvcpkg-b80cdd1118cec9ad9befdbbdded93a963877b994.tar.gz
vcpkg-b80cdd1118cec9ad9befdbbdded93a963877b994.zip
Fix C4018 warning
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
-rw-r--r--toolsrc/src/commands_ci.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp
index b20c204f4..f207eeaaa 100644
--- a/toolsrc/src/commands_ci.cpp
+++ b/toolsrc/src/commands_ci.cpp
@@ -86,7 +86,7 @@ namespace vcpkg::Commands::CI
System::println(stopwatch.toString());
- for (int i = 0; i < results.size(); i++)
+ for (size_t i = 0; i < results.size(); i++)
{
if (results[i] == BuildResult::SUCCEEDED)
{