1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-19 09:47:40 +00:00

Silence some casting size_t to double errors.

This commit is contained in:
Calvin Rose
2019-03-07 22:43:57 -05:00
parent c4f6f1d256
commit 69dcab2b55
2 changed files with 26 additions and 17 deletions

View File

@@ -27,8 +27,7 @@
(do
(def a (tarray/new :float64 10))
(def b (tarray/new :float64 5 2 0 a))
(def c (tarray/new :uint32 20))
))
(def c (tarray/new :uint32 20))))
(assert-no-error
"create some typed array from buffer"