mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Bugfix, forgot acc
This commit is contained in:
parent
bba1783a49
commit
62145ea95a
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@
|
|||
(define (adb:lambda-ids)
|
||||
(filter number? (hash-table-keys *adb*)))
|
||||
(define (adb:max-lambda-id)
|
||||
(foldl max (adb:lambda-ids)))
|
||||
(foldl max 0 (adb:lambda-ids)))
|
||||
(define (adb:set! key val) (hash-table-set! *adb* key val))
|
||||
(define-record-type <analysis-db-variable>
|
||||
(%adb:make-var
|
||||
|
|
Loading…
Add table
Reference in a new issue