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:
authorBrecht Van Lommel <brecht@blender.org>2020-02-18 02:22:49 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-02-18 02:45:30 +0300
commita450bf330c22264d87b0476f94e67a325c26d615 (patch)
tree247588cc1ac38b513126b0577f1cbefd69f21d64 /source/blender/makesrna/intern/rna_object_api.c
parent52a475287d7bd3b39135ff76e578a4d139ceb683 (diff)
Cleanup: compiler warnings
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_api.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index 2acfd62fd03..5552de00be8 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -688,8 +688,11 @@ void rna_Object_me_eval_info(
}
}
# else
-void rna_Object_me_eval_info(
- struct Object *ob, bContext *C, int type, PointerRNA *rnaptr_depsgraph, char *result)
+void rna_Object_me_eval_info(struct Object *UNUSED(ob),
+ bContext *UNUSED(C),
+ int UNUSED(type),
+ PointerRNA *UNUSED(rnaptr_depsgraph),
+ char *result)
{
result[0] = '\0';
}