Skip to content

Commit

Permalink
Pulled develop
Browse files Browse the repository at this point in the history
  • Loading branch information
EvertBunschoten committed Feb 13, 2024
1 parent 1fd5e04 commit d1879dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SU2_CFD/include/solvers/CSolver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4106,7 +4106,7 @@ class CSolver {
* \brief A virtual member.
* \param[in] config - Definition of the particular problem.
*/
inline virtual void SetFreeStream_TurboSolution(const CConfig *config) { }
inline virtual void SetFreeStream_TurboSolution(CConfig *config) { }

/*!
* \brief A virtual member.
Expand Down
2 changes: 1 addition & 1 deletion SU2_CFD/src/solvers/CEulerSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8762,7 +8762,7 @@ void CEulerSolver::SetFreeStream_Solution(const CConfig *config) {
END_SU2_OMP_FOR
}

void CEulerSolver::SetFreeStream_TurboSolution(const CConfig *config) {
void CEulerSolver::SetFreeStream_TurboSolution(CConfig *config) {

const su2double Alpha = config->GetAoA()*PI_NUMBER/180.0;
const auto Mach = config->GetMach();
Expand Down

0 comments on commit d1879dc

Please sign in to comment.