From 30af663dfc7f152e208962fc033d46bd4c7b7cb2 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 29 Jun 2022 16:38:24 +0200 Subject: Work around MSVC 14.3 issues --- libbuild2/dyndep.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbuild2/dyndep.cxx') diff --git a/libbuild2/dyndep.cxx b/libbuild2/dyndep.cxx index bbbf807..76eac9c 100644 --- a/libbuild2/dyndep.cxx +++ b/libbuild2/dyndep.cxx @@ -542,7 +542,7 @@ namespace build2 // implied ones because pre-entered members of a target group // (e.g., cli.cxx) are implied. // - if (x->decl >= target_decl::implied) + if (operator>= (x->decl, target_decl::implied)) // @@ VC14 { r = x; break; -- cgit v1.1