aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/libgnat/a-cbmutr.ads
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/libgnat/a-cbmutr.ads')
-rw-r--r--gcc/ada/libgnat/a-cbmutr.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/libgnat/a-cbmutr.ads b/gcc/ada/libgnat/a-cbmutr.ads
index 82b3d60..a9fb55a 100644
--- a/gcc/ada/libgnat/a-cbmutr.ads
+++ b/gcc/ada/libgnat/a-cbmutr.ads
@@ -303,8 +303,8 @@ private
type Element_Array is array (Count_Type range <>) of aliased Element_Type;
type Tree (Capacity : Count_Type) is tagged record
- Nodes : Tree_Node_Array (0 .. Capacity) := (others => <>);
- Elements : Element_Array (1 .. Capacity) := (others => <>);
+ Nodes : Tree_Node_Array (0 .. Capacity);
+ Elements : Element_Array (1 .. Capacity);
Free : Count_Type'Base := No_Node;
TC : aliased Tamper_Counts;
Count : Count_Type := 0;