@@ -37,20 +37,20 @@ CSU2ASCIIMeshReaderFEM::CSU2ASCIIMeshReaderFEM(CConfig* val_config, unsigned sho
3737
3838 /* --- Read the volume connectivity and distribute it
3939 linearly over the MPI ranks. ---*/
40- ReadVolumeElementConnectivity ();
40+ ReadVolumeElementConnectivity ({} );
4141
4242 /* --- Read the coordinates of the points that are needed
4343 on this MPI rank. ---*/
44- ReadPointCoordinates ();
44+ ReadPointCoordinates ({} );
4545
4646 /* --- Read the surface connectivity and store the surface elements whose
4747 corresponding volume element is stored on this MPI rank. ---*/
48- ReadSurfaceElementConnectivity ();
48+ ReadSurfaceElementConnectivity ({} );
4949}
5050
5151CSU2ASCIIMeshReaderFEM::~CSU2ASCIIMeshReaderFEM () = default ;
5252
53- void CSU2ASCIIMeshReaderFEM::ReadPointCoordinates () {
53+ void CSU2ASCIIMeshReaderFEM::ReadPointCoordinates (bool ) {
5454 /* --- Loop over the local elements to determine the global
5555 point IDs to be stored on this rank. --*/
5656 unsigned long ind = 0 ;
@@ -113,7 +113,7 @@ void CSU2ASCIIMeshReaderFEM::ReadPointCoordinates() {
113113 mesh_file.close ();
114114}
115115
116- void CSU2ASCIIMeshReaderFEM::ReadVolumeElementConnectivity () {
116+ void CSU2ASCIIMeshReaderFEM::ReadVolumeElementConnectivity (bool ) {
117117 /* Get a partitioner to help with linear partitioning. */
118118 CLinearPartitioner elemPartitioner (numberOfGlobalElements, 0 );
119119
@@ -213,7 +213,7 @@ void CSU2ASCIIMeshReaderFEM::ReadVolumeElementConnectivity() {
213213 mesh_file.close ();
214214}
215215
216- void CSU2ASCIIMeshReaderFEM::ReadSurfaceElementConnectivity () {
216+ void CSU2ASCIIMeshReaderFEM::ReadSurfaceElementConnectivity (bool ) {
217217 /* --- Determine the vector to hold the faces of the local elements. ---*/
218218 vector<CFaceOfElement> localFaces;
219219 DetermineFacesVolumeElements (localFaces);
0 commit comments