Skip to content

Commit

Permalink
Adjust for SBCL changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
stassats committed Apr 22, 2016
1 parent 61bf0d3 commit 60ca001
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions util-sbcl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
(defun fast-allocate-instance (wrapper initforms)
(declare (simple-vector initforms))
(let ((instance (sb-pcl::%make-standard-instance
(copy-seq initforms) (sb-pcl::get-instance-hash-code))))
(setf (sb-pcl::std-instance-wrapper instance)
wrapper)
(copy-seq initforms) 0)))
(setf (sb-pcl::std-instance-wrapper instance) wrapper)
instance))

(defun preallocate-objects (array info)
Expand Down

0 comments on commit 60ca001

Please sign in to comment.