From be86b90bac82e7c12fa0e350a83f0434b4a86322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Mon, 8 Apr 2019 13:44:48 +0200 Subject: [PATCH] Make typed protected rather than private, enabling inheritance. --- opm/autodiff/ISTLSolverEbos.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/opm/autodiff/ISTLSolverEbos.hpp b/opm/autodiff/ISTLSolverEbos.hpp index 0013e1578..4f29fbf24 100644 --- a/opm/autodiff/ISTLSolverEbos.hpp +++ b/opm/autodiff/ISTLSolverEbos.hpp @@ -178,6 +178,7 @@ protected: template class ISTLSolverEbos { + protected: typedef typename GET_PROP_TYPE(TypeTag, GridView) GridView; typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; typedef typename GET_PROP_TYPE(TypeTag, SparseMatrixAdapter) SparseMatrixAdapter;