Skip to content

Commit

Permalink
Remove outdated "friend" declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Jan 23, 2023
1 parent 695bbf5 commit 37250ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions include/cantera/kinetics/ImplicitSurfChem.h
Expand Up @@ -298,11 +298,6 @@ class ImplicitSurfChem : public FuncEval
//! phases associated with the surface problem is imposed
bool m_commonTempPressForPhases;

//! We make the solveSS class a friend because we need to access all of
//! the above information directly. Adding the members into the class is
//! also a possibility.
friend class solveSS;

private:
//! Controls the amount of printing from this routine
//! and underlying routines.
Expand Down
2 changes: 1 addition & 1 deletion src/kinetics/ImplicitSurfChem.cpp
Expand Up @@ -232,7 +232,7 @@ void ImplicitSurfChem::solvePseudoSteadyStateProblem(int ifuncOverride,
doublereal reltol = 1.0E-6;
doublereal atol = 1.0E-20;

// Install a filter for negative concentrations. One of the few ways solveSS
// Install a filter for negative concentrations. One of the few ways solveSP
// can fail is if concentrations on input are below zero.
bool rset = false;
for (size_t k = 0; k < m_nv; k++) {
Expand Down

0 comments on commit 37250ec

Please sign in to comment.