From: Mark Wooding Date: Sun, 30 Aug 2015 09:58:38 +0000 (+0100) Subject: src/c-types-impl.lisp: Fix arg list in `c-function-type' instance init. X-Git-Url: https://git.distorted.org.uk/~mdw/sod/commitdiff_plain/8e36de0e30786727d872f21bf10eb7a579f15dd6?hp=8e36de0e30786727d872f21bf10eb7a579f15dd6 src/c-types-impl.lisp: Fix arg list in `c-function-type' instance init. Previously, `make-function-type' was responsible for spotting `(void)' argument lists and converting them into empty lists, so if you used `make-instance' directly you could sneak an actual `(void)' argument list int. Now the instance initialization machinery for the `c-function-type' class does this itself, so the gap is closed. ---