From 5c5d43fd66f56681dd6b3571175321689b59eb12 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Fri, 28 Aug 2020 16:12:47 -0500 Subject: Clang Tidy: Fix no lint marker placement There was a line between the NOLINTNEXTLINE marker and the function. --- source/blender/blenlib/intern/math_boolean.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/intern/math_boolean.cc') diff --git a/source/blender/blenlib/intern/math_boolean.cc b/source/blender/blenlib/intern/math_boolean.cc index 2210911ad9c..22b4ff81db4 100644 --- a/source/blender/blenlib/intern/math_boolean.cc +++ b/source/blender/blenlib/intern/math_boolean.cc @@ -812,8 +812,8 @@ double orient3dfast(const double *pa, const double *pb, const double *pc, const /** * \note since this code comes from an external source, prefer not to break it * up to fix this clang-tidy warning. - * NOLINTNEXTLINE: readability-function-size */ +/* NOLINTNEXTLINE: readability-function-size */ static double orient3dadapt( const double *pa, const double *pb, const double *pc, const double *pd, double permanent) { @@ -1326,8 +1326,8 @@ double incirclefast(const double *pa, const double *pb, const double *pc, const /** * \note since this code comes from an external source, prefer not to break it * up to fix this clang-tidy warning. - * NOLINTNEXTLINE: readability-function-size */ +/* 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