diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-12-15 19:39:19 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-12-15 19:39:19 +0100 |
commit | 51c39772864d50f36aa2fda9fc54a71e3d9a832d (patch) | |
tree | e877b005cd9fcab3a048a29f1c40b6e9e53082e1 | |
parent | 39be5c4c992b9678418d1443055774fb77014346 (diff) |
simulation: remove vector-append! (not needed)
-rw-r--r-- | simulation.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/simulation.scm b/simulation.scm index d708567..d21aef6 100644 --- a/simulation.scm +++ b/simulation.scm @@ -19,9 +19,6 @@ (let ((now (gettimeofday))) (format #t "~a~a - ~?~%" (car now) (cdr now) f data))) -(define (vector-append! vec value) - (vector-set! vec (vector-length vec) value)) - (define-record-type message (make-message id device-id channel-n body) message? |