shrdlu68 / cl-tls

An implementation of TLS and related specifications in Common Lisp
BSD 3-Clause "New" or "Revised" License
53 stars 7 forks source link

liberalize typing for types that dont exist. #6

Closed K1D77A closed 2 years ago

K1D77A commented 2 years ago

You have declared :type in a class definition for classes that are commented out. For the normal optimization/safety settings on SBCL this would not be an issue but if you have Safety 3 Speed 0 then slots are type checked and your library fails. This is a quick fix. Thanks.