Skip to content

Commit cafd89b

Browse files
committed
Change "SetContainersNull" to "InitializeContainers"
1 parent 6917e1a commit cafd89b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

SU2_CFD/include/drivers/CDriverBase.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ class CDriverBase {
691691
/*!
692692
* \brief Initialize containers.
693693
*/
694-
void SetContainersNull();
694+
void InitializeContainers();
695695

696696
/*!
697697
* \brief Delete containers.

SU2_CFD/src/drivers/CDriverBase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ CDriverBase::CDriverBase(char* confFile, unsigned short val_nZone, SU2_Comm MPIC
6464

6565
CDriverBase::~CDriverBase(void) {}
6666

67-
void CDriverBase::SetContainersNull() {
67+
void CDriverBase::InitializeContainers() {
6868
/*--- Create pointers to all the classes that may be used by drivers. In general, the pointers are instantiated
6969
* down a hierarchy over all zones, multi-grid levels, equation sets, and equation terms as described in the comments
7070
* below. ---*/

SU2_DEF/src/drivers/CDeformationDriver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void CDeformationDriver::Input_Preprocessing() {
8686

8787
/*--- Initialize containers. --- */
8888

89-
SetContainersNull();
89+
InitializeContainers();
9090

9191
/*--- Loop over all zones to initialize the various classes. In most
9292
cases, nZone is equal to one. This represents the solution of a partial

SU2_DEF/src/drivers/CDiscAdjDeformationDriver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ void CDiscAdjDeformationDriver::Input_Preprocessing() {
9494

9595
/*--- Initialize containers. --- */
9696

97-
SetContainersNull();
97+
InitializeContainers();
9898

9999
/*--- Loop over all zones to initialize the various classes. In most
100100
* cases, nZone is equal to one. This represents the solution of a partial

0 commit comments

Comments
 (0)