aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/ieee.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 07:49:25 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 08:05:11 +0200
commit85d360929d13e6b0bcb082f144883a43f402ce22 (patch)
treef8d8135e12393588b7704318f26304dfab272658 /src/vhdl/ieee.adb
parent3c48cc2a70085eef63718e622b3d1a7b75a2f36f (diff)
downloadghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.gz
ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.bz2
ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.zip
vhdl: move std_standard package to vhdl child.
Diffstat (limited to 'src/vhdl/ieee.adb')
-rw-r--r--src/vhdl/ieee.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/ieee.adb b/src/vhdl/ieee.adb
index d730bf388..393a05d32 100644
--- a/src/vhdl/ieee.adb
+++ b/src/vhdl/ieee.adb
@@ -17,7 +17,7 @@
-- 02111-1307, USA.
with Iirs_Utils; use Iirs_Utils;
-with Std_Package;
+with Vhdl.Std_Package;
package body Ieee is
function Skip_Copyright_Notice (Decl : Iir) return Iir
@@ -26,7 +26,7 @@ package body Ieee is
if Decl /= Null_Iir
and then Get_Kind (Decl) = Iir_Kind_Constant_Declaration
and then (Get_Base_Type (Get_Type (Decl))
- = Std_Package.String_Type_Definition)
+ = Vhdl.Std_Package.String_Type_Definition)
then
return Get_Chain (Decl);
else