From d4bd0789abb6e7805e07636232cec4480028f6d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 7 Aug 2020 15:49:53 +0200 Subject: Cleanup: Delaunay 2D, silence Clang-Tidy readability-function-size This adds a `NOLINT` marker to explicitly silence a warning from Clang-Tidy's `readability-function-size` rule for the `incircleadapt()` function in `delaunay_2d.c`. No functional changes. --- source/blender/blenlib/intern/delaunay_2d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') diff --git a/source/blender/blenlib/intern/delaunay_2d.c b/source/blender/blenlib/intern/delaunay_2d.c index 7199e461c6c..173c024dab7 100644 --- a/source/blender/blenlib/intern/delaunay_2d.c +++ b/source/blender/blenlib/intern/delaunay_2d.c @@ -4602,7 +4602,7 @@ static double orient2d(const double *pa, const double *pb, const double *pc) * fast, but will run more slowly when the input points are cocircular or * nearly so. */ - +/* NOLINTNEXTLINE: readability-function-size */ static double incircleadapt( const double *pa, const double *pb, const double *pc, const double *pd, double permanent) { -- cgit v1.2.3