The new warning is spuriously flagged on membership tests in
vss-xml-implementation-html_writer_data.adb, leading to the GNAT CB
failing, so we disable it until that issue can be resolved.
gcc/ada/ChangeLog:
* exp_ch4.adb (Warn_On_Abstract_Equality_For_Component): Temporarily
disable warning.
is
Eq : Entity_Id;
begin
+ -- Temporarily disable warning, to prevent spurious warnings
+ -- occurring in vss-xml-implementation-html_writer_data.adb. ???
+
+ if True then
+ return;
+ end if;
+
if Is_Record_Type (Underlying_Type (Comp_Type)) then
Eq := Get_User_Defined_Equality (Comp_Type);