From eb36125218da7ff57be09b110a4e82ff84a8452c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 15 Oct 2024 16:20:53 +1100 Subject: [PATCH] Unbreak build from missing include --- source/blender/geometry/intern/resample_curves.cc | 1 + source/blender/nodes/composite/nodes/node_composite_normal.cc | 2 ++ 2 files changed, 3 insertions(+) diff --git a/source/blender/geometry/intern/resample_curves.cc b/source/blender/geometry/intern/resample_curves.cc index 50a76ef12e2..9e141c340e3 100644 --- a/source/blender/geometry/intern/resample_curves.cc +++ b/source/blender/geometry/intern/resample_curves.cc @@ -4,6 +4,7 @@ #include "BLI_array_utils.hh" #include "BLI_math_color.hh" +#include "BLI_math_vector.hh" #include "BLI_math_quaternion.hh" #include "BLI_length_parameterize.hh" diff --git a/source/blender/nodes/composite/nodes/node_composite_normal.cc b/source/blender/nodes/composite/nodes/node_composite_normal.cc index f350ae1d04f..4e882af017b 100644 --- a/source/blender/nodes/composite/nodes/node_composite_normal.cc +++ b/source/blender/nodes/composite/nodes/node_composite_normal.cc @@ -6,6 +6,8 @@ * \ingroup cmpnodes */ +#include "BLI_math_vector.hh" + #include "FN_multi_function_builder.hh" #include "NOD_multi_function.hh"