aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-06-22 23:05:31 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-06-22 23:05:31 +0200
commit1068b38e71c1445d3a09e1ecb63d647e5c354aeb (patch)
treec9c4285ad0a81e97dd87a02562e4f8780772bb95
parentb56dffd9a7f810dbbf264cd4060e6160556bd02c (diff)
Sort issigned after isfloat
-rw-r--r--src/analyzer.h2
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;