Skip to content

Commit

Permalink
Fix increment-atomic-series for non-SBCL or Allegro (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruricolist authored Sep 5, 2024
1 parent 21d0a2e commit 250b30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/port.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
`(1- (excl:incf-atomic (car ,name)))
#-(or (and sbcl 64-bit) (and allegro smp-macros))
`(with-lock ((cdr ,name))
(1- (incf ,(car name)))))
(1- (incf (car ,name)))))


;;; ----------------
Expand Down

0 comments on commit 250b30d

Please sign in to comment.