From 5a8a9c2fc5af8436ede160edee10d81403b0c006 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Sun, 5 Mar 2006 23:55:08 +0000 Subject: [PATCH] Changed the defn of a function to agree with underlying virtual function. --- Cantera/cxx/include/GRI30.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/cxx/include/GRI30.h b/Cantera/cxx/include/GRI30.h index 5f32f8dbd..ca480dca7 100644 --- a/Cantera/cxx/include/GRI30.h +++ b/Cantera/cxx/include/GRI30.h @@ -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;