From 42f4c411641c04da2b8f08f9029e17bfd37206e4 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Thu, 10 Sep 2015 20:59:08 +0200 Subject: Reimplement table package (used instead of GNAT.Table). --- src/ortho/mcode/binary_file.ads | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/ortho/mcode/binary_file.ads') diff --git a/src/ortho/mcode/binary_file.ads b/src/ortho/mcode/binary_file.ads index 4618aebd0..da8341b34 100644 --- a/src/ortho/mcode/binary_file.ads +++ b/src/ortho/mcode/binary_file.ads @@ -19,7 +19,7 @@ with System; with Interfaces; use Interfaces; with Ada.Unchecked_Deallocation; with Ortho_Ident; use Ortho_Ident; -with GNAT.Table; +with Tables; with Memsegs; package Binary_File is @@ -250,12 +250,11 @@ private Section_Chain : Section_Acc := null; Section_Last : Section_Acc := null; - package Symbols is new GNAT.Table + package Symbols is new Tables (Table_Component_Type => Symbol_Type, Table_Index_Type => Symbol, Table_Low_Bound => 2, - Table_Initial => 1024, - Table_Increment => 100); + Table_Initial => 1024); function Pow_Align (V : Pc_Type; Align : Natural) return Pc_Type; -- cgit v1.2.3