-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Description
Hi Gnatcoll developers,
As you can see e.g. in
gnatcoll-core/src/gnatcoll-boyer_moore.adb
Lines 136 to 138 in 12821a4
| Prefix : Offset_Array (1 .. From_String'Length); | |
| Reverse_Prefix : Offset_Array (1 .. From_String'Length); | |
| K, K2 : Natural := 0; |
some declarations are combined,
while others are kept apart.
Do you want to be consistent in this aspect?
So either
Prefix : Offset_Array (1 .. From_String'Length);
Reverse_Prefix : Offset_Array (1 .. From_String'Length);
K : Natural := 0;
K2 : Natural := 0;
or
Prefix, Reverse_Prefix : Offset_Array (1 .. From_String'Length);
K, K2 : Natural := 0;
If so, using the rejuvenation library we can rewrite the code to the desired format.
Greetings,
Pierre
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
