Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/blenlib/BLI_iterator.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_iterator.h b/source/blender/blenlib/BLI_iterator.h
index 39d5cc12d87..dffdeec949a 100644
--- a/source/blender/blenlib/BLI_iterator.h
+++ b/source/blender/blenlib/BLI_iterator.h
@@ -41,9 +41,8 @@ typedef void (*IteratorBeginCb)(BLI_Iterator *iter, void *data_in);
{ \
_type _instance; \
IteratorCb callback_end_func = callback_end; \
- BLI_Iterator iter_macro = { \
- .skip = false, \
- }; \
+ BLI_Iterator iter_macro; \
+ iter_macro.skip = false; \
for (callback_begin(&iter_macro, (_data_in)); \
iter_macro.valid; \
callback_next(&iter_macro)) \