diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-03-12 15:44:52 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2023-03-12 15:44:52 -0300 |
commit | b31f8f03a3148b0a158cb7fe838e9474ab097ab8 (patch) | |
tree | a20c86085759507e4c901a69451b1c24ea773d67 | |
parent | 4a721bc7ae71489d261a037a6b04d0df00419f89 (diff) | |
download | cmamut-b31f8f03a3148b0a158cb7fe838e9474ab097ab8.tar.gz cmamut-b31f8f03a3148b0a158cb7fe838e9474ab097ab8.zip |
Add _Bool type
-rw-r--r-- | cmamut.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmamut.lisp b/cmamut.lisp index b0f7144..4306cbe 100644 --- a/cmamut.lisp +++ b/cmamut.lisp @@ -35,7 +35,7 @@ 'sb-alien:float) ((or (string= tag ":double") (string= tag ":long-double")) 'sb-alien:double) - ((string= tag ":unsigned-char") + ((or (string= tag ":unsigned-char") (string= tag ":_Bool")) 'sb-alien:unsigned-char) ((string= tag ":unsigned-short") 'sb-alien:unsigned-short) |