From 83522747581500ef39005bc76b1048db1cd3bd29 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Tue, 4 Jun 2019 13:26:43 +0200 Subject: [PATCH] Cleanup: remove unused macro FOR_EACH_PICTURE_NON_PTR Signed-off-by: Berthold Stoeger --- core/dive.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/dive.h b/core/dive.h index 093046cf4..c6b08abd4 100644 --- a/core/dive.h +++ b/core/dive.h @@ -248,9 +248,6 @@ struct picture { if (_dive) \ for (struct picture *picture = (_dive)->picture_list; picture; picture = picture->next) -#define FOR_EACH_PICTURE_NON_PTR(_divestruct) \ - for (struct picture *picture = (_divestruct).picture_list; picture; picture = picture->next) - extern struct picture *alloc_picture(); extern void free_picture(struct picture *picture); extern void create_picture(const char *filename, int shift_time, bool match_all);