Skip to content

Commit

Permalink
Fix error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
oehmke committed Nov 5, 2024
1 parent 74fdd3d commit 93a7b1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Infrastructure/Mesh/src/ESMCI_MeshDual.C
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void MeshDual(Mesh *src_mesh, Mesh **_dual_mesh) {

// Don't currently support duals of 3D Meshes
if (src_mesh->parametric_dim()>2) {
Throw() <<" Creation of a dual mesh isn't supported for Meshes of parametric dim greater than 3.\n";
Throw() <<" Creation of a dual mesh isn't supported for Meshes of parametric dim greater than 2.\n";
}

// Need element coordinates
Expand Down

0 comments on commit 93a7b1a

Please sign in to comment.