Skip to content

Commit

Permalink
Fix misformed ftype definition
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehavensift committed Aug 24, 2023
1 parent d35839d commit 62b2ed7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions shop3/looping-tasks/conditional-extensions.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
))
)

(declaim (ftype (function (&rest arglist &key :top-tasks :tasks :unifier)
(values conditional-state-expand &optional)
make-conditional-state-expand))
(declaim (ftype (function (&rest t
&key (:top-tasks t) (:tasks t) (:unifier t))
(values conditional-state-expand &optional))
make-conditional-state-expand))
(defun make-conditional-state-expand (&rest arglist
&key top-tasks tasks unifier)
(declare (ignorable top-tasks
Expand Down

0 comments on commit 62b2ed7

Please sign in to comment.