Skip to content

Commit

Permalink
narrowing conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
esseivaju committed Jan 9, 2025
1 parent be12b7a commit 5dacc44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/orange/univ/detail/SenseCalculator.hh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ SenseCalculator::SenseCalculator(LocalSurfaceVisitor const& visit,
CELER_EXPECT(vol.num_faces() <= storage.size());
LazySenseCalculator lazy_sense_calculator(visit, vol, pos, face);
// Fill the temp logic vector with values for all surfaces in the volume
for (FaceId cur_face : range(FaceId{sense_storage_.size()}))
for (FaceId cur_face : range(FaceId{vol.num_faces()}))
{
sense_storage_[cur_face.unchecked_get()]
= lazy_sense_calculator(cur_face);
Expand Down

0 comments on commit 5dacc44

Please sign in to comment.