aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--odb/validator.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/odb/validator.cxx b/odb/validator.cxx
index 75757cd..9dcdabf 100644
--- a/odb/validator.cxx
+++ b/odb/validator.cxx
@@ -1512,7 +1512,13 @@ namespace
compiler, get_identifier ("has_lt_operator"), false, false);
if (has_lt_operator_ != error_mark_node)
+ {
+#if BUILDING_GCC_MAJOR >= 8
has_lt_operator_ = OVL_FIRST (has_lt_operator_);
+#else
+ has_lt_operator_ = OVL_CURRENT (has_lt_operator_);
+#endif
+ }
else
{
os << unit.file () << ": error: unable to resolve has_lt_operator "