From cf2f5406fc8971a927c52587ead91bfe93691502 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Fri, 6 Oct 2017 18:55:45 +0200 Subject: [PATCH] add size_type to MGInterfaceOperator This might be needed when one uses a single wrapper class to define level block operators based on non-block versions. --- include/deal.II/matrix_free/operators.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/deal.II/matrix_free/operators.h b/include/deal.II/matrix_free/operators.h index 91a5967ef0..a121357186 100644 --- a/include/deal.II/matrix_free/operators.h +++ b/include/deal.II/matrix_free/operators.h @@ -482,6 +482,11 @@ namespace MatrixFreeOperators */ typedef typename OperatorType::value_type value_type; + /** + * Size type. + */ + typedef typename OperatorType::size_type size_type; + /** * Default constructor. */ -- 2.39.5