Skip to content

Commit

Permalink
Ignore unused variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferada committed Jul 28, 2020
1 parent 13acef2 commit 9be4bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collectors.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ binds *print-pretty* to nil
o (lambda (&rest values) (operate o values))))

(defgeneric should-aggregate? (aggregator value)
(:method ((o value-aggregator) v) t)
(:method ((o value-aggregator) v) (declare (ignore v)) t)
(:documentation "Should we aggregate a given value into our collection"))

(defgeneric deoperate (aggregator values &key test key)
Expand Down

0 comments on commit 9be4bc1

Please sign in to comment.