diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-04 21:59:35 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-04 21:59:35 +0200 |
commit | 7ca14ac72c36c363d8f874c266c2730f209a0edd (patch) | |
tree | bbb7bd17960299bc03da84c1b37e0e4dafdf31c4 /src/ghdldrv | |
parent | fc028b5d21727da66dc8e146b3dbcfc870c64f90 (diff) | |
download | ghdl-7ca14ac72c36c363d8f874c266c2730f209a0edd.tar.gz ghdl-7ca14ac72c36c363d8f874c266c2730f209a0edd.tar.bz2 ghdl-7ca14ac72c36c363d8f874c266c2730f209a0edd.zip |
vhdl: move tokens as vhdl child package.
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdlprint.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ghdldrv/ghdlprint.adb b/src/ghdldrv/ghdlprint.adb index d72b1747d..a9a9f2627 100644 --- a/src/ghdldrv/ghdlprint.adb +++ b/src/ghdldrv/ghdlprint.adb @@ -27,7 +27,7 @@ with Files_Map; with Libraries; with Errorout; use Errorout; with Iirs_Utils; use Iirs_Utils; -with Tokens; +with Vhdl.Tokens; with Vhdl.Scanner; with Parse; with Canon; @@ -86,7 +86,7 @@ package body Ghdlprint is is use Flags; use Vhdl.Scanner; - use Tokens; + use Vhdl.Tokens; use Files_Map; use Ada.Characters.Latin_1; @@ -856,7 +856,7 @@ package body Ghdlprint is is pragma Unreferenced (Cmd); use Vhdl.Scanner; - use Tokens; + use Vhdl.Tokens; use Files_Map; use Ada.Characters.Latin_1; @@ -1047,7 +1047,7 @@ package body Ghdlprint is Args : Argument_List) is pragma Unreferenced (Cmd); - use Tokens; + use Vhdl.Tokens; use Vhdl.Scanner; package Ref_Tokens is new Tables |