Skip to content

Commit 77bb4a9

Browse files
committed
tiny
1 parent ca80c9f commit 77bb4a9

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

TODO

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
- test_image.ws fails with:
2+
3+
error in binary ++
4+
left = 50
5+
right = Image <604x604 float, 2 bands, multiband 0x580a32188220>
6+
called from "Test_images_item.Colour_atlas_item.action._result.blocks''"
7+
8+
because we no longer allow non-class on the left for ++ overloads
9+
10+
need a Vector on the left I guess
11+
12+
13+
- nicholas's bug report
14+
115
- lcomps leave stray unreffed symbols in "list unresolved"
216

317
Image_transform_item.Resize_item.Size_within_item.action.within ($SAVEDIR/start/Image.def:509) refers to undefined symbol h

share/nip4/start/Image.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2363,7 +2363,7 @@ Test_images_item = class
23632363
lab_start = colour_transform_to Image_type.LAB start;
23642364
blocks' = blocks - to_real nstep * to_real ssize +
23652365
Vector (tl lab_start.value);
2366-
blocks'' = hd lab_start.value ++ Image blocks';
2366+
blocks'' = Vector (hd lab_start.value) ++ Image blocks';
23672367
blocks'''
23682368
= image_set_type Image_type.LAB blocks'', Image grid
23692369
= 0;

0 commit comments

Comments
 (0)