diff options
author | Tristan Gingold | 2014-06-14 17:17:27 +0200 |
---|---|---|
committer | Tristan Gingold | 2014-06-14 17:17:27 +0200 |
commit | ef2a64f7c0527259266a3b022a747b2fa9ea5f84 (patch) | |
tree | 943f6bdb1a0d3e0a740edcb0d2cd71581785ecc9 /translate/grt | |
parent | 0ae183d0090889641eefd0e8ccc8924d33fcc5f4 (diff) | |
download | ghdl-ef2a64f7c0527259266a3b022a747b2fa9ea5f84.tar.gz ghdl-ef2a64f7c0527259266a3b022a747b2fa9ea5f84.tar.bz2 ghdl-ef2a64f7c0527259266a3b022a747b2fa9ea5f84.zip |
grt-types: make access type std_string_ptr general.
Diffstat (limited to 'translate/grt')
-rw-r--r-- | translate/grt/grt-types.ads | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate/grt/grt-types.ads b/translate/grt/grt-types.ads index acefe33..3b86c20 100644 --- a/translate/grt/grt-types.ads +++ b/translate/grt/grt-types.ads @@ -89,7 +89,7 @@ package Grt.Types is function To_Ghdl_Uc_Array_Acc is new Ada.Unchecked_Conversion (Source => Address, Target => Ghdl_Uc_Array_Acc); - type Std_String_Ptr is access Std_String; + type Std_String_Ptr is access all Std_String; -- Verilog types. |