Changed the defn of a function to agree with underlying virtual function.

This commit is contained in:
Harry Moffat 2006-03-05 23:55:08 +00:00
parent 47a22c5bf1
commit 5a8a9c2fc5

View file

@ -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;