diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-27 13:47:29 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-27 13:47:29 -0500 |
| commit | a7bbbe9584f6e4cd35c9a78e8f83b458ddd8f914 (patch) | |
| tree | ed355fbb759916f4a73be0404137b45c2b751385 /builtins/integers.c | |
| parent | 805c26e65a4b96d61b98c984c526f2d3e2789749 (diff) | |
Const typeinfos
Diffstat (limited to 'builtins/integers.c')
| -rw-r--r-- | builtins/integers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/integers.c b/builtins/integers.c index b221a8ba..ab61b3b9 100644 --- a/builtins/integers.c +++ b/builtins/integers.c @@ -48,7 +48,7 @@ } \ public const c_type KindOfInt##__min = min_val; \ public const c_type KindOfInt##__max = max_val; \ - public TypeInfo KindOfInt = { \ + public const TypeInfo KindOfInt = { \ .size=sizeof(c_type), \ .align=__alignof__(c_type), \ .tag=CustomInfo, \ |
