Skip to content

Commit 3f9e1e8

Browse files
jbouwmanstylewarning
authored andcommitted
Provide type description fragment in allocate-memory-for-model error
Minor nit: changes error message from The value of QVM::SIZE is 0, which is not The SIZE wasn't a multiple of 8.. to The value of QVM::SIZE is 0, which is not a multiple of 8.
1 parent 3da6935 commit 3f9e1e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classical-memory.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ If BYPASS-SIZE-LIMIT is T (default: NIL), then the size limit dictated by **CLAS
287287
;; model is right.
288288
8)
289289
:do
290-
(check-type size (integer 1) "The SIZE wasn't a multiple of 8.")
290+
(check-type size (integer 1) "a multiple of 8")
291291
;; Record this allocation
292292
(decf size-left size)
293293
;; Check we haven't overflowed.

0 commit comments

Comments
 (0)