aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/dyndep.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2022-06-29 16:38:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2022-06-29 16:38:24 +0200
commit30af663dfc7f152e208962fc033d46bd4c7b7cb2 (patch)
tree6768d8e3344ec6caa146748a8cc3b34e20bda304 /libbuild2/dyndep.cxx
parenta8777a4aa67b1cf60d7053635d1a3edadca5779e (diff)
Work around MSVC 14.3 issues
Diffstat (limited to 'libbuild2/dyndep.cxx')
-rw-r--r--libbuild2/dyndep.cxx2
1 files changed, 1 insertions, 1 deletions
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;