1
1

Cleanup: fix clang-tidy warning readability-qualified-auto

No functional changes.
This commit is contained in:
2021-07-20 16:56:59 +02:00
parent 3e4c98429b
commit c4f71f3193

View File

@@ -151,7 +151,7 @@ class TriMeshTopology : NonCopyable {
* Else return NO_INDEX. */
int other_tri_if_manifold(Edge e, int t) const
{
auto p = edge_tri_.lookup_ptr(e);
const auto *p = edge_tri_.lookup_ptr(e);
if (p != nullptr && (*p)->size() == 2) {
return ((**p)[0] == t) ? (**p)[1] : (**p)[0];
}
@@ -204,7 +204,7 @@ TriMeshTopology::TriMeshTopology(const IMesh &tm)
}
edges->append_non_duplicates(e);
auto p = edge_tri_.lookup_ptr(Edge(v, vnext));
auto *p = edge_tri_.lookup_ptr(Edge(v, vnext));
if (p == nullptr) {
edge_tri_.add_new(e, new Vector<int>{t});
}
@@ -238,7 +238,7 @@ TriMeshTopology::~TriMeshTopology()
Vector<Vector<int> *> values;
/* Deconstructing is faster in parallel, so it is worth building an array of things to delete. */
for (auto item : edge_tri_.values()) {
for (auto *item : edge_tri_.values()) {
values.append(item);
}