From 85980743b058e287f1d6400a64dcc60f87fad000 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Thu, 2 Jul 2020 10:16:54 -0600 Subject: [PATCH] Cleanup: Fix build error with clang on windows. Header and implementation signature for ED_object_add_duplicate were not the same leading to a build error with clang on windows. --- source/blender/editors/include/ED_object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/include/ED_object.h b/source/blender/editors/include/ED_object.h index 73c58753531..e04d30892d7 100644 --- a/source/blender/editors/include/ED_object.h +++ b/source/blender/editors/include/ED_object.h @@ -185,7 +185,7 @@ struct Base *ED_object_add_duplicate(struct Main *bmain, struct Scene *scene, struct ViewLayer *view_layer, struct Base *base, - const uint dupflag); + const eDupli_ID_Flags dupflag); void ED_object_parent(struct Object *ob, struct Object *parent,