From 833d79aeb6d9fe034a075b61cf0fac63ef324df2 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Mon, 27 Aug 2018 21:40:25 -0400 Subject: [PATCH] Fix compiler warning about declaration of BandMatrix::PivData --- include/cantera/numerics/BandMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cantera/numerics/BandMatrix.h b/include/cantera/numerics/BandMatrix.h index 012061f85..9e8fda676 100644 --- a/include/cantera/numerics/BandMatrix.h +++ b/include/cantera/numerics/BandMatrix.h @@ -279,7 +279,7 @@ protected: //! value of zero doublereal m_zero; - class PivData; // pImpl wrapper class + struct PivData; // pImpl wrapper class //! Pivot vector std::unique_ptr m_ipiv;