diff options
| author | 2026-01-25 12:58:22 +0100 | |
|---|---|---|
| committer | 2026-01-25 12:58:22 +0100 | |
| commit | f9f0789e58be01b7169712d64af9443a35392fbf (patch) | |
| tree | 438d7cade1a62d33db4e0aef85cd1c235527ade2 /c/eval.c | |
| parent | ca983b5700f894c653758a4f93a758b93d025621 (diff) | |
c: support at least parsing C99 _Complex types
Diffstat (limited to 'c/eval.c')
| -rw-r--r-- | c/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ targ2hosttype(enum typetag t) #undef U #undef S } else if (t == TYLDOUBLE) return TYDOUBLE; - else if (isfltt(t)) return t; + else if (isfltt(t) || iscomplext(t)) return t; return 0; } |