aboutsummaryrefslogtreecommitdiffstats
path: root/src/libraries.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2015-09-10 20:59:08 +0200
committerTristan Gingold <tgingold@free.fr>2015-09-10 20:59:08 +0200
commit42f4c411641c04da2b8f08f9029e17bfd37206e4 (patch)
tree97db2955734ee7e059f461cef8a2924eeb49271d /src/libraries.adb
parent95632804220716d4993d3e4b0d0cba06d984a837 (diff)
downloadghdl-42f4c411641c04da2b8f08f9029e17bfd37206e4.tar.gz
ghdl-42f4c411641c04da2b8f08f9029e17bfd37206e4.tar.bz2
ghdl-42f4c411641c04da2b8f08f9029e17bfd37206e4.zip
Reimplement table package (used instead of GNAT.Table).
Diffstat (limited to 'src/libraries.adb')
-rw-r--r--src/libraries.adb7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/libraries.adb b/src/libraries.adb
index 1b2945f8a..d6de2b51c 100644
--- a/src/libraries.adb
+++ b/src/libraries.adb
@@ -16,7 +16,7 @@
-- Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-- 02111-1307, USA.
with Ada.Text_IO; use Ada.Text_IO;
-with GNAT.Table;
+with Tables;
with GNAT.OS_Lib;
with Interfaces.C_Streams;
with System;
@@ -41,12 +41,11 @@ package body Libraries is
Implicit_Location: Location_Type;
-- Table of library pathes.
- package Pathes is new GNAT.Table
+ package Pathes is new Tables
(Table_Index_Type => Integer,
Table_Component_Type => Name_Id,
Table_Low_Bound => 1,
- Table_Initial => 4,
- Table_Increment => 100);
+ Table_Initial => 4);
-- Report an error message.
procedure Error_Lib_Msg (Msg : String) is