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:
authorSybren A. Stüvel <sybren@blender.org>2020-08-07 16:49:53 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-08-07 16:54:28 +0300
commitd4bd0789abb6e7805e07636232cec4480028f6d1 (patch)
treee4b238049e27d4c5c52d74a0ebf462c445760ea5 /source/blender
parentb27a95379899de161a42700b22c1e746c5fbf6da (diff)
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.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenlib/intern/delaunay_2d.c2
1 files changed, 1 insertions, 1 deletions
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)
{