diff options
author | gingold | 2008-01-15 05:53:39 +0000 |
---|---|---|
committer | gingold | 2008-01-15 05:53:39 +0000 |
commit | eb4d862a6b8ac3991dac9a8bc2fb0b9d9830e951 (patch) | |
tree | 3944b708fedbc9f955f09f947cd4377c286a9127 /translate/grt/grt-types.ads | |
parent | 861828b455955858709dfda217af0188cfdef799 (diff) | |
download | ghdl-eb4d862a6b8ac3991dac9a8bc2fb0b9d9830e951.tar.gz ghdl-eb4d862a6b8ac3991dac9a8bc2fb0b9d9830e951.tar.bz2 ghdl-eb4d862a6b8ac3991dac9a8bc2fb0b9d9830e951.zip |
synchronize: add support for MacOSX, fix bogus type conversion
Diffstat (limited to 'translate/grt/grt-types.ads')
-rw-r--r-- | translate/grt/grt-types.ads | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/translate/grt/grt-types.ads b/translate/grt/grt-types.ads index 819b5db..6fd0bb6 100644 --- a/translate/grt/grt-types.ads +++ b/translate/grt/grt-types.ads @@ -58,7 +58,8 @@ package Grt.Types is end record; subtype Std_Character is Character; - type Std_String_Base is array (Ghdl_Index_Type) of Std_Character; + type Std_String_Uncons is array (Ghdl_Index_Type range <>) of Std_Character; + subtype Std_String_Base is Std_String_Uncons (Ghdl_Index_Type); type Std_String_Basep is access Std_String_Base; type Std_String_Bound is record |