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-09-04 15:53:53 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-09-04 15:53:53 +0300
commit767916eefc620fc4f864bfd63633e35af00d9366 (patch)
treeae44e54c52a80239352592c7c23e25a742feaa30 /source/blender
parent9f5c30797d5acb12512dd16310cdcfa62b1d2c72 (diff)
Cleanup: more Clang-Tidy readability-const-return-type fixes
Building with `WITH_GMP=ON` revealed more const-return-type issues. No functional changes.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenlib/intern/mesh_boolean.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/mesh_boolean.cc b/source/blender/blenlib/intern/mesh_boolean.cc
index 387d879c5af..9b25c5ea7c8 100644
--- a/source/blender/blenlib/intern/mesh_boolean.cc
+++ b/source/blender/blenlib/intern/mesh_boolean.cc
@@ -401,12 +401,12 @@ class Cell {
patches_.append_non_duplicates(p);
}
- const Span<int> patches() const
+ Span<int> patches() const
{
return Span<int>(patches_);
}
- const Span<int> winding() const
+ Span<int> winding() const
{
return Span<int>(winding_);
}