From 7915ce5b1c20971a5cfa176e59170a33e776e48b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=B8=D0=BB=D1=8C=D1=8F=20=5F?= Date: Thu, 4 Sep 2025 21:32:24 +0200 Subject: [PATCH] Cleanup: Redundant template parameterization Pull Request: https://projects.blender.org/blender/blender/pulls/145052 --- source/blender/blenlib/BLI_array_utils.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_array_utils.hh b/source/blender/blenlib/BLI_array_utils.hh index bac8f224c4d..85a7adde69a 100644 --- a/source/blender/blenlib/BLI_array_utils.hh +++ b/source/blender/blenlib/BLI_array_utils.hh @@ -155,7 +155,7 @@ inline void gather(const VArray &src, /** * Fill the destination span by gathering indexed values from the `src` array. */ -template +template inline void gather(const Span src, const IndexMask &indices, MutableSpan dst,