diff options
author | Stefan Wildemann <metalstrolch@users.noreply.github.com> | 2021-09-08 12:54:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 12:54:26 +0200 |
commit | e8cc9f0454be5d135f1f24b3428aff18dfee527e (patch) | |
tree | 64faca31f26907f3e46cab8622e792839386cec0 | |
parent | 6879f0ad955f87f90414083795ea7da8621acf24 (diff) | |
parent | da065b411d6bee9e7f9b7424bb615d64c7e4cc54 (diff) | |
download | navit-cancel_drawing_on_resize.tar.gz |
Merge branch 'trunk' into cancel_drawing_on_resizecancel_drawing_on_resize
-rw-r--r-- | navit/maptool/itembin.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/navit/maptool/itembin.c b/navit/maptool/itembin.c index 3996d6f6a..5df29df77 100644 --- a/navit/maptool/itembin.c +++ b/navit/maptool/itembin.c @@ -85,13 +85,10 @@ void item_bin_copy_coord(struct item_bin *ib, struct item_bin *from, int dir) { for (i = 1 ; i <= count ; i++) item_bin_add_coord(ib, &c[count-i], 1); } - void item_bin_copy_attr(struct item_bin *ib, struct item_bin *from, enum attr_type attr) { struct attr_bin *ab=item_bin_get_attr_bin(from, attr, NULL); if (ab) item_bin_add_attr_data(ib, ab->type, (void *)(ab+1), (ab->len-1)*4); - assert(attr == attr_osm_wayid); - assert(item_bin_get_wayid(ib) == item_bin_get_wayid(from)); } void item_bin_add_coord_rect(struct item_bin *ib, struct rect *r) { |