[Ada] Add more dummy names in Sem_Warn.Has_Junk_Name
To sync the names used in CodePeer (and SPARK) when filtering out warnings on e.g. unused variables. gcc/ada/ * sem_warn.adb (Has_Junk_Name): Add more dummy names.
This commit is contained in:
parent
ec0f9f7d88
commit
09c7e3175a
1 changed files with 3 additions and 1 deletions
|
@ -2872,7 +2872,9 @@ package body Sem_Warn is
|
|||
Match ("dummy") or else
|
||||
Match ("ignore") or else
|
||||
Match ("junk") or else
|
||||
Match ("unused");
|
||||
Match ("unuse") or else
|
||||
Match ("tmp") or else
|
||||
Match ("temp");
|
||||
end Has_Junk_Name;
|
||||
|
||||
--------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue