Cleanup: more Clang-Tidy readability-const-return-type fixes

Building with `WITH_GMP=ON` revealed more const-return-type issues.

No functional changes.
This commit is contained in:
2020-09-04 14:53:53 +02:00
parent 9f5c30797d
commit 767916eefc

View File

@@ -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_);
}