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:
@@ -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_);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user