Changed the defn of a function to agree with underlying virtual function.
This commit is contained in:
parent
47a22c5bf1
commit
5a8a9c2fc5
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ namespace Cantera {
|
|||
virtual ~GRI30() {}
|
||||
|
||||
bool operator!() { return !m_ok;}
|
||||
bool ready() { return m_ok; }
|
||||
bool ready() const { return m_ok; }
|
||||
friend ostream& operator<<(ostream& s, GRI30& mix) {
|
||||
string r = report(mix, true);
|
||||
s << r;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue