Skip to content

Commit 9127f1b

Browse files
committed
[fix] polymorphic-functions/specializing depends on trivial-garbage
1 parent ab525f8 commit 9127f1b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

polymorphic-functions-lite.asd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(asdf:defsystem "polymorphic-functions-lite"
22
:license "MIT"
3-
:version "0.5.1" ; beta
3+
:version "0.5.2" ; beta
44
:author "Shubhamkar Ayare (shubhamayare@yahoo.co.in)"
55
:description "Variant of polymorphic-functions with no support for static dispatch. This lets it have minimal dependencies."
66
:depends-on ("alexandria"

polymorphic-functions.asd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(asdf:defsystem "polymorphic-functions"
22
:license "MIT"
3-
:version "0.5.1" ; beta
3+
:version "0.5.2" ; beta
44
:author "Shubhamkar Ayare (shubhamayare@yahoo.co.in)"
55
:description "Type based dispatch for Common Lisp"
66
:depends-on ("polymorphic-functions-lite"
@@ -29,7 +29,8 @@
2929
(FIVEAM:RUN! :POLYMORPHIC-FUNCTIONS))")))))
3030

3131
(defsystem "polymorphic-functions/specializing"
32-
:depends-on ("polymorphic-functions")
32+
:depends-on ("polymorphic-functions"
33+
"trivial-garbage")
3334
:description "Defines the polymorphic-functions:specializing macro"
3435
:pathname "src/nonlite/"
3536
:components ((:file "specializing")))

0 commit comments

Comments
 (0)