From 53e7e314e89f7e6262a8b169ce4c5aa872b8ceee Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 14 Jan 2019 13:18:52 +0200 Subject: Fix VC warning --- build2/operation.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build2/operation.cxx b/build2/operation.cxx index 1cbf1041..c03a5ee4 100644 --- a/build2/operation.cxx +++ b/build2/operation.cxx @@ -506,7 +506,7 @@ namespace build2 // the noop meta-operation and the default operation; we omit printing // both. // - for (size_t id (2); id < ov.size (); ++id) + for (uint8_t id (2); id < ov.size (); ++id) { if (ov[id] != nullptr) cout << ' ' << ot[id]; -- cgit