From c5d7d582092f2ff88a97277545cdb039df5d70e4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 26 Sep 2025 21:57:47 +1000 Subject: [PATCH] Cleanup: correct terminating macro Harmless but the begin/end macros didn't match. --- source/blender/python/intern/bpy_rna_id_collection.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/python/intern/bpy_rna_id_collection.cc b/source/blender/python/intern/bpy_rna_id_collection.cc index fd4ff7358ef..66dea569a47 100644 --- a/source/blender/python/intern/bpy_rna_id_collection.cc +++ b/source/blender/python/intern/bpy_rna_id_collection.cc @@ -289,7 +289,7 @@ static PyObject *bpy_user_map(PyObject *self, PyObject *args, PyObject *kwds) } FOREACH_MAIN_LISTBASE_ID_END; } - FOREACH_MAIN_LISTBASE_ID_END; + FOREACH_MAIN_LISTBASE_END; ret = data_cb.user_map; @@ -491,7 +491,7 @@ static PyObject *bpy_file_path_map(PyObject *self, PyObject *args, PyObject *kwd } FOREACH_MAIN_LISTBASE_ID_END; } - FOREACH_MAIN_LISTBASE_ID_END; + FOREACH_MAIN_LISTBASE_END; } ret = filepathmap_data.file_path_map;