Skip to content

Commit 3fc451a

Browse files
committed
Fix - disable array processing for kFloat16 and kDouble32
1 parent a4a15ed commit 3fc451a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/tree.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2471,7 +2471,7 @@ async function treeProcess(tree, selector, args) {
24712471

24722472
for (let k = 0; k < handle.arr.length; ++k) {
24732473
const elem = handle.arr[k];
2474-
if ((elem.type <= 0) || (elem.type >= kOffsetL) || (elem.type === kCharStar))
2474+
if ((elem.type <= 0) || (elem.type >= kOffsetL) || (elem.type === kCharStar) || (elem.type === kFloat16) || (elem.type === kDouble32))
24752475
handle.process_arrays = false;
24762476
}
24772477

0 commit comments

Comments
 (0)