aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan Bossart <nathan@postgresql.org>2024-10-15 16:20:49 -0500
committerNathan Bossart <nathan@postgresql.org>2024-10-15 16:20:49 -0500
commitd5ca15ee54bf7faf038a38408e8adec971740966 (patch)
tree882241f9af7c88df7b6245f225d7ffccae3e918d /src
parent2453196107de66cff0257feef2ff8585dcf9d924 (diff)
downloadpostgresql-d5ca15ee54bf7faf038a38408e8adec971740966.tar.gz
postgresql-d5ca15ee54bf7faf038a38408e8adec971740966.zip
Add type cast to foreach_internal's loop variable.
C++ requires explicitly casting void pointers to the appropriate pointer type, which means the foreach_ptr macro cannot be used in C++ code without this change. Author: Jelte Fennema-Nio Reviewed-by: Bruce Momjian Discussion: https://postgr.es/m/CAGECzQSYG3QfHrc-rOk2KbnB9iJOd7Qu-Xii1s-GTA%3D3JFt49Q%40mail.gmail.com Backpatch-through: 17
Diffstat (limited to 'src')
-rw-r--r--src/include/nodes/pg_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/pg_list.h b/src/include/nodes/pg_list.h
index 52df93759f7..d131350e107 100644
--- a/src/include/nodes/pg_list.h
+++ b/src/include/nodes/pg_list.h
@@ -485,7 +485,7 @@ for_each_cell_setup(const List *lst, const ListCell *initcell)
for (ForEachState var##__state = {(lst), 0}; \
(var##__state.l != NIL && \
var##__state.i < var##__state.l->length && \
- (var = func(&var##__state.l->elements[var##__state.i]), true)); \
+ (var = (type pointer) func(&var##__state.l->elements[var##__state.i]), true)); \
var##__state.i++)
/*