diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-11-13 06:08:29 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-11-13 06:08:29 +0100 |
commit | c3c170921c0b4fb4e01f2079fcd8bbb637a48459 (patch) | |
tree | e611481f5f5e4506b73071f5faee5b43ccae5aab | |
parent | 796d5a09cb31f1dbcdb021febfac8bc5fd112c21 (diff) | |
download | ghdl-c3c170921c0b4fb4e01f2079fcd8bbb637a48459.tar.gz ghdl-c3c170921c0b4fb4e01f2079fcd8bbb637a48459.tar.bz2 ghdl-c3c170921c0b4fb4e01f2079fcd8bbb637a48459.zip |
Use uns32 (instead of nat32) for String8_Id.
-rw-r--r-- | src/types.ads | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.ads b/src/types.ads index 2b1b056db..08ca9d710 100644 --- a/src/types.ads +++ b/src/types.ads @@ -78,7 +78,7 @@ package Types is -- have a 32 bit type to represent a string (contrary to pointers that -- could be 32 or 64 bit - in general - or to an access type which can be -- even wider in Ada). - type String8_Id is new Nat32; + type String8_Id is new Uns32; for String8_Id'Size use 32; Null_String8 : constant String8_Id := 0; |