aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-11-13 06:08:29 +0100
committerTristan Gingold <tgingold@free.fr>2017-11-13 06:08:29 +0100
commitc3c170921c0b4fb4e01f2079fcd8bbb637a48459 (patch)
treee611481f5f5e4506b73071f5faee5b43ccae5aab /src
parent796d5a09cb31f1dbcdb021febfac8bc5fd112c21 (diff)
downloadghdl-c3c170921c0b4fb4e01f2079fcd8bbb637a48459.tar.gz
ghdl-c3c170921c0b4fb4e01f2079fcd8bbb637a48459.tar.bz2
ghdl-c3c170921c0b4fb4e01f2079fcd8bbb637a48459.zip
Use uns32 (instead of nat32) for String8_Id.
Diffstat (limited to 'src')
-rw-r--r--src/types.ads2
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;