Skip to content

Commit 8fc042c

Browse files
authored
Apply suggestions from code review
1 parent 2c3e3c7 commit 8fc042c

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

SU2_CFD/include/output/COutput.hpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -418,12 +418,6 @@ class COutput {
418418
*/
419419
void SetMultizoneHistoryOutput(COutput** output, CConfig **config, CConfig *driver_config,
420420
unsigned long TimeIter, unsigned long OuterIter);
421-
422-
/*!
423-
* \brief Sets the current time iteration
424-
* \param[in] timeIter - the current time iteration
425-
*/
426-
inline void SetCurTimeIter(unsigned long val_curTimeIter) {curTimeIter = val_curTimeIter;}
427421

428422
/*!
429423
* \brief Sets the volume output filename

SU2_CFD/src/drivers/CMultizoneDriver.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,6 @@ void CMultizoneDriver::Corrector(unsigned short val_iZone) {
397397

398398
bool CMultizoneDriver::OuterConvergence(unsigned long OuterIter) {
399399

400-
// Set the current time iter for the multizone problem
401-
402400
/*--- Update the residual for the all the zones. ---*/
403401

404402
for (iZone = 0; iZone < nZone; iZone++) {

SU2_CFD/src/output/COutput.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ void COutput::SetHistoryOutput(CGeometry *geometry,
206206
unsigned long TimeIter,
207207
unsigned long OuterIter,
208208
unsigned long InnerIter) {
209-
210209
curTimeIter = TimeIter;
211210
curAbsTimeIter = max(TimeIter, config->GetStartWindowIteration()) - config->GetStartWindowIteration();
212211
curOuterIter = OuterIter;

0 commit comments

Comments
 (0)