Hi Gnatcoll developers,
As you can see e.g. in
|
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
Problem detected and solvable using Rejuvenation-Ada crate

Hi Gnatcoll developers,
As you can see e.g. in
gnatcoll-core/src/gnatcoll-boyer_moore.adb
Lines 136 to 138 in 12821a4
some declarations are combined,
while others are kept apart.
Do you want to be consistent in this aspect?
So either
or
If so, using the rejuvenation library we can rewrite the code to the desired format.
Greetings,
Pierre
Problem detected and solvable using Rejuvenation-Ada crate
