aboutsummaryrefslogtreecommitdiff
path: root/build2/algorithm.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-13 00:29:10 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-13 15:33:13 +0300
commitb83949cefd98b4f077af97afc902d367fffb8c10 (patch)
treed026ad396dc0011185955d2494730d05c5c179e0 /build2/algorithm.cxx
parent1cf6a73d3379e50cfe082aef56830677bc3830b5 (diff)
Fix VC15 warnings (/W3)
Diffstat (limited to 'build2/algorithm.cxx')
-rw-r--r--build2/algorithm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx
index 8203b08..156a209 100644
--- a/build2/algorithm.cxx
+++ b/build2/algorithm.cxx
@@ -292,7 +292,7 @@ namespace build2
// First try the map for the actual operation. If that doesn't yeld
// anything, try the wildcard map.
//
- for (size_t oi (o), oip (o); oip != 0; oip = oi, oi = 0)
+ for (operation_id oi (o), oip (o); oip != 0; oip = oi, oi = 0)
{
const target_type_rule_map* ttm ((*om)[oi]);