Skip to content

Commit

Permalink
fix array declaration: (type (simple-array fixnum *) counts) -> (type…
Browse files Browse the repository at this point in the history
… (simple-array fixnum (*)) counts)
  • Loading branch information
slyrus committed Mar 28, 2011
1 parent b0fed6a commit 5519c48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster.lisp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
(flet ((recompute-means () (flet ((recompute-means ()
(declare (type 8-bit-rgb-image image) (declare (type 8-bit-rgb-image image)
(type (simple-array fixnum (* *)) z) (type (simple-array fixnum (* *)) z)
(type (simple-array fixnum *) counts) (type (simple-array fixnum (*)) counts)
(optimize (speed 3))) (optimize (speed 3)))
;; clear out the old values ;; clear out the old values
(dotimes (q k) (dotimes (q k)
Expand Down

0 comments on commit 5519c48

Please sign in to comment.