From 79545aedf9333867d8c756b62771d667e33978e1 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Tue, 20 Mar 2007 21:46:24 +0000 Subject: [PATCH] solaris 10 update Changed getActivities() to be a const function. --- Cantera/src/thermo/SingleSpeciesTP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/src/thermo/SingleSpeciesTP.h b/Cantera/src/thermo/SingleSpeciesTP.h index b8fe82641..bda3852c1 100644 --- a/Cantera/src/thermo/SingleSpeciesTP.h +++ b/Cantera/src/thermo/SingleSpeciesTP.h @@ -200,7 +200,7 @@ namespace Cantera { * * @param a Output vector of activities. Length: 1. */ - virtual void getActivities(doublereal* a) { + virtual void getActivities(doublereal* a) const { a[0] = 1.0; }