Commit: 18a8bb5c16f9a14dafbdcbec328c334416541425 Author: Rohan Rathi Date: Tue Jun 5 23:21:08 2018 +0530 Branches: soc-2018-bevel https://developer.blender.org/rB18a8bb5c16f9a14dafbdcbec328c334416541425
Fix compilation error due to different params in freeCustomNormalArray declaration and definition =================================================================== M source/blender/editors/transform/transform.h =================================================================== diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h index 3718f1be9a8..62356cd4ba6 100644 --- a/source/blender/editors/transform/transform.h +++ b/source/blender/editors/transform/transform.h @@ -875,7 +875,7 @@ bool applyTransformOrientation(const struct TransformOrientation *ts, float r_ma int getTransformOrientation_ex(const struct bContext *C, float normal[3], float plane[3], const short around); int getTransformOrientation(const struct bContext *C, float normal[3], float plane[3]); -void freeCustomNormalArray(TransInfo *t, TransCustomData *custom_data); +void freeCustomNormalArray(TransInfo *t, TransDataContainer *tc, TransCustomData *custom_data); void freeEdgeSlideTempFaces(EdgeSlideData *sld); void freeEdgeSlideVerts(TransInfo *t, TransDataContainer *tc, TransCustomData *custom_data); _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
