src/cx/iterator.h

changeset 516
7bcea73303ce
parent 500
eb9e7bd40a8e
child 551
2946e13c89a4
--- a/src/cx/iterator.h	Sat Apr 16 14:47:27 2022 +0200
+++ b/src/cx/iterator.h	Sat Apr 16 17:28:36 2022 +0200
@@ -138,6 +138,6 @@
  * @param iter the iterator
  */
 #define cx_foreach(type, elem, iter) \
-for (type elem; cxIteratorValid(&iter) && (elem = cxIteratorCurrent(&iter)) != NULL ; cxIteratorNext(&iter)) // NOLINT(bugprone-macro-parentheses)
+for (type elem; cxIteratorValid(&iter) && (elem = (type)cxIteratorCurrent(&iter)) != NULL ; cxIteratorNext(&iter)) // NOLINT(bugprone-macro-parentheses)
 
 #endif /* UCX_ITERATOR_H */

mercurial