Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2020-07-02 19:16:54 +0300
committerRay Molenkamp <github@lazydodo.com>2020-07-02 19:16:54 +0300
commit85980743b058e287f1d6400a64dcc60f87fad000 (patch)
tree7310e7821fd4b92fa5af87035d4e94b58f2cfda8 /source/blender/editors/include
parent95f3397a6888894c24b901ac14bcd59ecb6cd605 (diff)
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.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_object.h2
1 files changed, 1 insertions, 1 deletions
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,