diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-06-29 16:38:24 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-06-29 16:38:24 +0200 |
commit | 30af663dfc7f152e208962fc033d46bd4c7b7cb2 (patch) | |
tree | 6768d8e3344ec6caa146748a8cc3b34e20bda304 /libbuild2/dyndep.cxx | |
parent | a8777a4aa67b1cf60d7053635d1a3edadca5779e (diff) |
Work around MSVC 14.3 issues
Diffstat (limited to 'libbuild2/dyndep.cxx')
-rw-r--r-- | libbuild2/dyndep.cxx | 2 |
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; |