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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-14 10:04:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-14 10:04:10 +0300
commit417cd20257e6648135f9a4a7e38b1c8a6d6da060 (patch)
tree12f974b3c96a35c01d518948d221c869c56ed98d /source/blender/editors/gpencil
parentb3dbe17658fe8ca5115abab642cc0f1680d1f0d5 (diff)
Cleanup: unused function
Diffstat (limited to 'source/blender/editors/gpencil')
-rw-r--r--source/blender/editors/gpencil/gpencil_primitive.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_primitive.c b/source/blender/editors/gpencil/gpencil_primitive.c
index ba49afd0680..d108b4b910e 100644
--- a/source/blender/editors/gpencil/gpencil_primitive.c
+++ b/source/blender/editors/gpencil/gpencil_primitive.c
@@ -249,7 +249,8 @@ static void gp_primitive_update_cps(tGPDprimitive *tgpi)
}
/* Helper to reflect point */
-static void gp_reflect_point_v2_v2v2v2(float va[2], const float p[2], const float a[2], const float b[2])
+static void UNUSED_FUNCTION(gp_reflect_point_v2_v2v2v2)(
+ float va[2], const float p[2], const float a[2], const float b[2])
{
float point[2];
closest_to_line_v2(point, p, a, b);