diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-22 23:05:31 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-22 23:05:31 +0200 |
commit | 1068b38e71c1445d3a09e1ecb63d647e5c354aeb (patch) | |
tree | c9c4285ad0a81e97dd87a02562e4f8780772bb95 /src | |
parent | b56dffd9a7f810dbbf264cd4060e6160556bd02c (diff) |
Sort issigned after isfloat
Diffstat (limited to 'src')
-rw-r--r-- | src/analyzer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyzer.h b/src/analyzer.h index 92857d7..d251117 100644 --- a/src/analyzer.h +++ b/src/analyzer.h @@ -45,8 +45,8 @@ typedef struct type { union { struct { uint8_t size; /* number of bytes */ - bool issigned; bool isfloat; + bool issigned; }; struct { const struct type *params, *ret; |