Skip to content

Commit

Permalink
Result of running pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vdweide committed Feb 5, 2025
1 parent 8b39e5c commit 6a659d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Common/src/geometry/meshreader/CCGNSMeshReaderFEM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,7 @@ void CCGNSMeshReaderFEM::ReadCGNSSurfaceSection(const int val_section, const vec

case QUADRILATERAL:
thisFace.nCornerPoints = 4;
thisFace.cornerPoints[2] = static_cast<unsigned long> (nPolyGrid)
* nDOFEdgeGrid;
thisFace.cornerPoints[2] = static_cast<unsigned long>(nPolyGrid) * nDOFEdgeGrid;
thisFace.cornerPoints[3] = nDOFsGrid - 1;
break;

Expand Down
3 changes: 1 addition & 2 deletions Common/src/geometry/meshreader/CSU2ASCIIMeshReaderFEM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,7 @@ void CSU2ASCIIMeshReaderFEM::ReadSurfaceElementConnectivity() {
case QUADRILATERAL:
nDOFsGrid = nDOFEdgeGrid * nDOFEdgeGrid;
thisFace.nCornerPoints = 4;
thisFace.cornerPoints[2] = static_cast<unsigned long>(nPolyGrid)
* nDOFEdgeGrid;
thisFace.cornerPoints[2] = static_cast<unsigned long>(nPolyGrid) * nDOFEdgeGrid;
thisFace.cornerPoints[3] = nDOFsGrid - 1;
break;

Expand Down

0 comments on commit 6a659d7

Please sign in to comment.