We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d08996 commit 65d323eCopy full SHA for 65d323e
src/sources/common/casting-rules.lisp
@@ -58,7 +58,8 @@
58
;; otherwide, we do the full dance
59
(and
60
(or (and t-s-p (string= type rule-source-type)))
61
- (or (null tm-s-p) (typemod-expr-matches-p typemod-expr typemod))
+ (or (null tm-s-p) (when typemod
62
+ (typemod-expr-matches-p typemod-expr typemod)))
63
(or (null d-s-p) (string= default rule-source-default))
64
(or (null u-s-p) (eq unsigned rule-unsigned))
65
(or (null n-s-p) (eq not-null rule-source-not-null))
0 commit comments