@@ -1944,12 +1944,12 @@ void CConfig::SetConfig_Options() {
19441944 addShortListOption (" MESH_BOX_SIZE" , nMesh_Box_Size, Mesh_Box_Size);
19451945
19461946 /* DESCRIPTION: List of the length of the RECTANGLE or BOX grid in the x,y,z directions. (default: (1.0,1.0,1.0) ). */
1947- array<su2double, 3 > default_mesh_box_length = {{ 1.0 , 1.0 , 1.0 }} ;
1948- addDoubleArrayOption (" MESH_BOX_LENGTH" , 3 , Mesh_Box_Length, default_mesh_box_length. data () );
1947+ default_mesh_box_length[ 0 ] = 1.0 ; default_mesh_box_length[ 1 ] = 1.0 ; default_mesh_box_length[ 2 ] = 1.0 ;
1948+ addDoubleArrayOption (" MESH_BOX_LENGTH" , 3 , Mesh_Box_Length, default_mesh_box_length);
19491949
19501950 /* DESCRIPTION: List of the offset from 0.0 of the RECTANGLE or BOX grid in the x,y,z directions. (default: (0.0,0.0,0.0) ). */
1951- array<su2double, 3 > default_mesh_box_offset = {{ 0.0 , 0.0 , 0.0 }} ;
1952- addDoubleArrayOption (" MESH_BOX_OFFSET" , 3 , Mesh_Box_Offset, default_mesh_box_offset. data () );
1951+ default_mesh_box_offset[ 0 ] = 0.0 ; default_mesh_box_offset[ 1 ] = 0.0 ; default_mesh_box_offset[ 2 ] = 0.0 ;
1952+ addDoubleArrayOption (" MESH_BOX_OFFSET" , 3 , Mesh_Box_Offset, default_mesh_box_offset);
19531953
19541954 /* DESCRIPTION: Determine if the mesh file supports multizone. \n DEFAULT: true (temporarily) */
19551955 addBoolOption (" MULTIZONE_MESH" , Multizone_Mesh, true );
0 commit comments