Fixing two places flagged by gnatcheck to use "No" instead of "not Present".
gcc/ada/
* exp_aggr.adb (Expand_Container_Aggregate): Change "not Present"
tests to tests using "No" (in two places).
-- Determine whether this is an indexed aggregate (see RM 4.3.5(25/5)).
if Present (New_Indexed_Subp) then
- if not Present (Add_Unnamed_Subp) then
+ if No (Add_Unnamed_Subp) then
Is_Indexed_Aggregate := True;
else
end Expand_Range_Component;
begin
- pragma Assert (not Present (Expressions (N)));
+ pragma Assert (No (Expressions (N)));
if Siz > 0 then