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:
authorHans Goudey <h.goudey@me.com>2020-09-22 21:36:06 +0300
committerHans Goudey <h.goudey@me.com>2020-09-22 21:36:06 +0300
commit358a8e00bd07c658a8a3d7a3fd6224953f50e09a (patch)
tree794e40aa6b37718235f4b744e17fba697ab8358f /source/blender/makesrna/intern/rna_brush.c
parent88970e3900f32d43cadd0f3b6809e71771612379 (diff)
Cleanup: Quiet unused variables warning
Diffstat (limited to 'source/blender/makesrna/intern/rna_brush.c')
-rw-r--r--source/blender/makesrna/intern/rna_brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_brush.c b/source/blender/makesrna/intern/rna_brush.c
index 1f5aaabe59f..9a43766d667 100644
--- a/source/blender/makesrna/intern/rna_brush.c
+++ b/source/blender/makesrna/intern/rna_brush.c
@@ -980,7 +980,7 @@ static bool rna_GPencilBrush_pin_mode_get(PointerRNA *ptr)
return false;
}
-static void rna_GPencilBrush_pin_mode_set(PointerRNA *ptr, bool value)
+static void rna_GPencilBrush_pin_mode_set(PointerRNA *UNUSED(ptr), bool UNUSED(value))
{
/* All data is set in update. Keep this function only to avoid RNA compilation errors. */
return;