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.
This commit is contained in:
Sybren A. Stüvel 2020-08-07 15:49:53 +02:00
parent b27a953798
commit d4bd0789ab
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{