diff options
author | Michael Forney <mforney@mforney.org> | 2021-09-29 14:47:02 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-09-29 14:47:41 -0700 |
commit | dbdab3ac59af6469e715f8ce9dfe3fdfc523cddf (patch) | |
tree | 27d82017b08acc1ebdb8b304e4105fac165a5297 /cc.h | |
parent | 83e2a1c124a229351df23b336a44db1603862d98 (diff) |
Rename uint64_t field of constant union to u
This will prepare us for adding a signed int64_t field called i.
Diffstat (limited to 'cc.h')
-rw-r--r-- | cc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -327,7 +327,7 @@ struct expr { struct decl *decl; } ident; union { - uint64_t i; + uint64_t u; double f; } constant; struct { |