diff options
author | Vicente Bergas <vicencb@users.noreply.github.com> | 2018-05-03 19:28:49 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2018-05-03 20:50:44 +0200 |
commit | 252a9169efef06b03061b58743be41e233a80ddb (patch) | |
tree | 2c06fc390c75c0c5f1e6b33755f08b5638a2ee90 /src/vhdl/sem_decls.adb | |
parent | b709733aa8df0671ff77bc57636702f8a6e00800 (diff) | |
download | ghdl-252a9169efef06b03061b58743be41e233a80ddb.tar.gz ghdl-252a9169efef06b03061b58743be41e233a80ddb.tar.bz2 ghdl-252a9169efef06b03061b58743be41e233a80ddb.zip |
Fix warning: use clause for package has no effect
With gcc 8.1 the following message appears:
warning: use clause for package "*" has no effect
gnatmake: "*.adb" compilation error
This patch fixes it.
Diffstat (limited to 'src/vhdl/sem_decls.adb')
-rw-r--r-- | src/vhdl/sem_decls.adb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vhdl/sem_decls.adb b/src/vhdl/sem_decls.adb index ab0566753..de4f38f04 100644 --- a/src/vhdl/sem_decls.adb +++ b/src/vhdl/sem_decls.adb @@ -2633,7 +2633,6 @@ package body Sem_Decls is function Sem_Alias_Declaration (Alias : Iir) return Iir is - use Std_Names; Name : Iir; Sig : Iir_Signature; N_Entity : Iir; |