From 0c624e5286e03fd16e49d152d2445cb5a365805c Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Sat, 15 Aug 2009 17:18:59 +0000 Subject: [PATCH] Made the data protected in this file. This is a fairly obvious change to help with modularity. --- Cantera/src/numerics/BandMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/src/numerics/BandMatrix.h b/Cantera/src/numerics/BandMatrix.h index 13c6aa885..3d5512108 100755 --- a/Cantera/src/numerics/BandMatrix.h +++ b/Cantera/src/numerics/BandMatrix.h @@ -134,11 +134,11 @@ namespace Cantera { vector_fp::const_iterator begin() const { return data.begin(); } vector_fp::const_iterator end() const { return data.end(); } + protected: vector_fp data; vector_fp ludata; bool m_factored; - protected: int m_n, m_kl, m_ku; doublereal m_zero;