@@ -1414,8 +1414,8 @@ package body Gnatcheck.Rules is
14141414 is
14151415 Instance : constant Rule_Instance_Access :=
14161416 Get_Or_Create_Instance (Rule, Instance_Name);
1417- Tagged_Instance : One_Integer_Parameter_Instance
1418- renames One_Integer_Parameter_Instance (Instance.all );
1417+ Tagged_Instance : One_Integer_Parameter_Instance renames
1418+ One_Integer_Parameter_Instance (Instance.all );
14191419 begin
14201420 -- If the param is empty and the command line is enabling the instance,
14211421 -- emit an error
@@ -1472,8 +1472,8 @@ package body Gnatcheck.Rules is
14721472 is
14731473 Instance : constant Rule_Instance_Access :=
14741474 Get_Or_Create_Instance (Rule, Instance_Name);
1475- Tagged_Instance : One_Boolean_Parameter_Instance
1476- renames One_Boolean_Parameter_Instance (Instance.all );
1475+ Tagged_Instance : One_Boolean_Parameter_Instance renames
1476+ One_Boolean_Parameter_Instance (Instance.all );
14771477 begin
14781478 -- If the param is empty, just enable or disable the instance
14791479 if Param = " " then
@@ -1521,8 +1521,8 @@ package body Gnatcheck.Rules is
15211521 is
15221522 Instance : constant Rule_Instance_Access :=
15231523 Get_Or_Create_Instance (Rule, Instance_Name);
1524- Tagged_Instance : One_String_Parameter_Instance
1525- renames One_String_Parameter_Instance (Instance.all );
1524+ Tagged_Instance : One_String_Parameter_Instance renames
1525+ One_String_Parameter_Instance (Instance.all );
15261526 begin
15271527 -- If the param is empty and the command line enable the instance, emit
15281528 -- an error message.
@@ -1580,8 +1580,8 @@ package body Gnatcheck.Rules is
15801580 is
15811581 Instance : constant Rule_Instance_Access :=
15821582 Get_Or_Create_Instance (Rule, Instance_Name);
1583- Tagged_Instance : One_Array_Parameter_Instance
1584- renames One_Array_Parameter_Instance (Instance.all );
1583+ Tagged_Instance : One_Array_Parameter_Instance renames
1584+ One_Array_Parameter_Instance (Instance.all );
15851585 begin
15861586 -- If the param is empty, just disable the instance following the
15871587 -- command line.
@@ -1664,8 +1664,8 @@ package body Gnatcheck.Rules is
16641664 is
16651665 Instance : constant Rule_Instance_Access :=
16661666 Get_Or_Create_Instance (Rule, Instance_Name);
1667- Tagged_Instance : One_Integer_Or_Booleans_Parameter_Instance
1668- renames One_Integer_Or_Booleans_Parameter_Instance (Instance.all );
1667+ Tagged_Instance : One_Integer_Or_Booleans_Parameter_Instance renames
1668+ One_Integer_Or_Booleans_Parameter_Instance (Instance.all );
16691669 Int_Param_Value : Integer;
16701670 Param_Found : Boolean := False;
16711671 begin
@@ -1757,8 +1757,8 @@ package body Gnatcheck.Rules is
17571757 is
17581758 Instance : constant Rule_Instance_Access :=
17591759 Get_Or_Create_Instance (Rule, Instance_Name);
1760- Tagged_Instance : Identifier_Suffixes_Instance
1761- renames Identifier_Suffixes_Instance (Instance.all );
1760+ Tagged_Instance : Identifier_Suffixes_Instance renames
1761+ Identifier_Suffixes_Instance (Instance.all );
17621762 Paren_Index : Natural;
17631763 Norm_Param : constant String := Remove_Spaces (Param);
17641764 Lower_Param : constant String := To_Lower (Param);
@@ -1886,8 +1886,8 @@ package body Gnatcheck.Rules is
18861886 is
18871887 Instance : constant Rule_Instance_Access :=
18881888 Get_Or_Create_Instance (Rule, Instance_Name);
1889- Tagged_Instance : Identifier_Prefixes_Instance
1890- renames Identifier_Prefixes_Instance (Instance.all );
1889+ Tagged_Instance : Identifier_Prefixes_Instance renames
1890+ Identifier_Prefixes_Instance (Instance.all );
18911891 Col_Index : Natural;
18921892 Norm_Param : constant String := Remove_Spaces (Param);
18931893 Lower_Param : constant String := To_Lower (Param);
@@ -2017,8 +2017,8 @@ package body Gnatcheck.Rules is
20172017 is
20182018 Instance : constant Rule_Instance_Access :=
20192019 Get_Or_Create_Instance (Rule, Instance_Name);
2020- Tagged_Instance : Identifier_Casing_Instance
2021- renames Identifier_Casing_Instance (Instance.all );
2020+ Tagged_Instance : Identifier_Casing_Instance renames
2021+ Identifier_Casing_Instance (Instance.all );
20222022 Norm_Param : constant String := To_Lower (Remove_Spaces (Param));
20232023
20242024 procedure Check_And_Set
@@ -2198,8 +2198,8 @@ package body Gnatcheck.Rules is
21982198 is
21992199 Instance : constant Rule_Instance_Access :=
22002200 Get_Or_Create_Instance (Rule, Instance_Name);
2201- Tagged_Instance : Forbidden_Instance
2202- renames Forbidden_Instance (Instance.all );
2201+ Tagged_Instance : Forbidden_Instance renames
2202+ Forbidden_Instance (Instance.all );
22032203 Lower_Param : constant String := To_Lower (Param);
22042204
22052205 procedure Process_Param
@@ -2302,8 +2302,8 @@ package body Gnatcheck.Rules is
23022302 is
23032303 Instance : constant Rule_Instance_Access :=
23042304 Get_Or_Create_Instance (Rule, Instance_Name);
2305- Tagged_Instance : Silent_Exception_Handlers_Instance
2306- renames Silent_Exception_Handlers_Instance (Instance.all );
2305+ Tagged_Instance : Silent_Exception_Handlers_Instance renames
2306+ Silent_Exception_Handlers_Instance (Instance.all );
23072307
23082308 procedure Add_To (Str : in out Unbounded_Wide_Wide_String; Val : String);
23092309 -- Add `Val` to `Str`, separated with ","
0 commit comments