From bbd05eb0c32a9614f012a1d9b75cef736a1d4150 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 2 Mar 2015 08:54:00 +0200 Subject: Clean up clang warnings --- build/algorithm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build/algorithm.cxx') diff --git a/build/algorithm.cxx b/build/algorithm.cxx index 16bc1bc..4c3ae08 100644 --- a/build/algorithm.cxx +++ b/build/algorithm.cxx @@ -213,7 +213,7 @@ namespace build // the prerequisite was updated in this run which means the // target must be out of date. // - if (mt < mp || mt == mp && ts == target_state::updated) + if (mt < mp || (mt == mp && ts == target_state::updated)) u = true; } else -- cgit v1.1