File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 348
348
(undefine-polymorphic-function ' most-specialized-polymorph-tester)
349
349
(define-polymorphic-function most-specialized-polymorph-tester (a))
350
350
(defpolymorph most-specialized-polymorph-tester ((a string )) symbol
351
- (declare (ignore a))
351
+ (declare (ignorable a))
352
352
' string)
353
353
(defpolymorph-compiler-macro most-specialized-polymorph-tester (string ) (a)
354
- (declare (ignore a))
354
+ (declare (ignorable a))
355
355
` '(compiled string ))
356
356
(defpolymorph most-specialized-polymorph-tester ((a array )) symbol
357
- (declare (ignore a))
357
+ (declare (ignorable a))
358
358
' array)
359
359
(define-compiled-function most-specialized-polymorph-tester-caller ()
360
360
(declare (optimize speed (debug 1 )))
You can’t perform that action at this time.
0 commit comments