[Bf-blender-cvs] [2abbcaa0217] master: GPencil: Fix compiler warning, unused variable

Falk David noreply at git.blender.org
Fri Nov 13 22:32:09 CET 2020


Commit: 2abbcaa02170b791364ccb4b1fc355a4932af8c8
Author: Falk David
Date:   Fri Nov 13 22:31:58 2020 +0100
Branches: master
https://developer.blender.org/rB2abbcaa02170b791364ccb4b1fc355a4932af8c8

GPencil: Fix compiler warning, unused variable

===================================================================

M	source/blender/draw/intern/draw_cache_impl_gpencil.c

===================================================================

diff --git a/source/blender/draw/intern/draw_cache_impl_gpencil.c b/source/blender/draw/intern/draw_cache_impl_gpencil.c
index 0a80f7df877..81208b2f3bf 100644
--- a/source/blender/draw/intern/draw_cache_impl_gpencil.c
+++ b/source/blender/draw/intern/draw_cache_impl_gpencil.c
@@ -771,10 +771,7 @@ static char gpencil_beztriple_vflag_get(char flag,
   return vflag;
 }
 
-static void gpencil_edit_curve_stroke_iter_cb(bGPDlayer *gpl,
-                                              bGPDframe *gpf,
-                                              bGPDstroke *gps,
-                                              void *thunk)
+static void gpencil_edit_curve_stroke_iter_cb(bGPDlayer *gpl, bGPDstroke *gps, void *thunk)
 {
   if (gpl->flag & GP_LAYER_LOCKED) {
     return;



More information about the Bf-blender-cvs mailing list