diff options
| author | 2026-03-18 11:37:15 +0100 | |
|---|---|---|
| committer | 2026-03-18 11:37:15 +0100 | |
| commit | 3692c5caa02f1865cf66ce5640734310e42d51c9 (patch) | |
| tree | f94db2210eb508523af38a2ce8cf993a82b387d4 /src/c.h | |
| parent | 6889729b3484a7a63f240f717ec087a600cfda0f (diff) | |
c.h: accidentally removed a const
Diffstat (limited to 'src/c.h')
| -rw-r--r-- | src/c.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ typedef struct Decl { internstr sym; /* static/extern scls */ struct { ushort align; int id; }; /* local var */ vlong value; /* enum constant */ - Builtin *builtin; /* .isbuiltin */ + const Builtin *builtin; /* .isbuiltin */ }; } Decl; |