From 7d8bccbbd42fce350167292ef4544a6700f29899 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 6 Mar 2025 16:50:21 +1100 Subject: [PATCH] Cleanup: suppress undefined function warning SeqRenderData declared outside the blender::seq namespace was treated as a different type, causing the function to be treated as undeclared. --- source/blender/sequencer/SEQ_proxy.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/sequencer/SEQ_proxy.hh b/source/blender/sequencer/SEQ_proxy.hh index b4717c8ae02..f283f440d0a 100644 --- a/source/blender/sequencer/SEQ_proxy.hh +++ b/source/blender/sequencer/SEQ_proxy.hh @@ -16,7 +16,6 @@ struct Depsgraph; struct ListBase; struct Main; struct Scene; -struct SeqRenderData; struct Strip; struct bContext; struct wmJob; @@ -25,6 +24,7 @@ struct wmJobWorkerStatus; namespace blender::seq { struct SeqIndexBuildContext; +struct SeqRenderData; bool SEQ_proxy_rebuild_context(Main *bmain, Depsgraph *depsgraph,