diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 15:31:54 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 15:31:54 -0400 |
| commit | 04c8fb0362dc4f922c1e96ca01fb87a3e8e74214 (patch) | |
| tree | a5a65a625a9b697ac6875874b9b4c04abd3d0a65 /builtins/bool.c | |
| parent | 391c1b6bde0d5fd6f306f9613109e18ec487afe7 (diff) | |
Replace $Type with Type$info for builtin TypeInfos
Diffstat (limited to 'builtins/bool.c')
| -rw-r--r-- | builtins/bool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/bool.c b/builtins/bool.c index b3ba0bd7..677cfd97 100644 --- a/builtins/bool.c +++ b/builtins/bool.c @@ -48,7 +48,7 @@ public Bool_t Bool$random(double p) return (drand48() < p); } -public const TypeInfo $Bool = { +public const TypeInfo Bool$info = { .size=sizeof(bool), .align=__alignof__(bool), .tag=CustomInfo, |
