Skip to content

Commit 217db02

Browse files
committed
don't mark functions as both virtual and override
see C.128 in the C++ Core Guidelines suggested by CodeFactor
1 parent bb09595 commit 217db02

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SU2_CFD/include/solvers/CScalarSolver.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ class CScalarSolver : public CSolver {
295295
* \param[in] val_iter - Current external iteration number.
296296
* \param[in] val_update_geo - Flag for updating coords and grid velocity.
297297
*/
298-
virtual void LoadRestart(CGeometry** geometry, CSolver*** solver, CConfig* config, int val_iter,
298+
void LoadRestart(CGeometry** geometry, CSolver*** solver, CConfig* config, int val_iter,
299299
bool val_update_geo) override = 0;
300300

301301
/*!

0 commit comments

Comments
 (0)