Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/coreComponents/mesh/utilities/ComputationalGeometry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,9 @@ real64 centroid_3DPolygon( arraySlice1d< localIndex const > const pointsIndices,
GEOS_LOG_RANK( "Points: " << points[ pointsIndices[ a ] ] << " " << pointsIndices[ a ] );
}
#if defined(GEOS_DEVICE_COMPILE)
GEOS_ERROR( "Null area found" );
GEOS_WARNING( "Null area found - ok in case of pinched cell" );
#else
GEOS_ERROR( GEOS_FMT( "Null area found : {}", area ) );
GEOS_WARNING( GEOS_FMT( "Null area found : {} - ok in case of pinched cell", area ) );
#endif

return 0.0;
Expand Down
Loading