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
path: root/source
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2020-08-29 00:12:47 +0300
committerHans Goudey <h.goudey@me.com>2020-08-29 00:12:47 +0300
commit5c5d43fd66f56681dd6b3571175321689b59eb12 (patch)
tree8932f2cca26dd2e0f162b6b2ab5007c924401446 /source
parent91bbf96c1d8e1a1ea341b1ba18005a4d3e5725e4 (diff)
Clang Tidy: Fix no lint marker placement
There was a line between the NOLINTNEXTLINE marker and the function.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenlib/intern/math_boolean.cc4
1 files changed, 2 insertions, 2 deletions
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)
{