File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ bool PartitionedMesh::CoverageIsGreaterThan(
567567const RTree& PartitionedMesh::Data::SpatialIndex () const {
568568 ABSL_CHECK (!meshes_.empty ());
569569
570- absl::MutexLock lock (& cache_mutex_);
570+ absl::MutexLock lock (cache_mutex_);
571571
572572 // The index is already initialized, there's nothing to do.
573573 // NOMUTANTS -- Removing this would not have an observable effect on behavior
@@ -612,7 +612,7 @@ const RTree& PartitionedMesh::Data::SpatialIndex() const {
612612float PartitionedMesh::Data::TotalAbsoluteArea () const {
613613 ABSL_CHECK (!meshes_.empty ());
614614
615- absl::MutexLock lock (& cache_mutex_);
615+ absl::MutexLock lock (cache_mutex_);
616616 if (!cached_total_absolute_area_.has_value ()) {
617617 float total_abs_area = 0 ;
618618 for (const Mesh& mesh : meshes_) {
You can’t perform that action at this time.
0 commit comments