From: Denis Davydov Date: Fri, 6 Oct 2017 16:55:45 +0000 (+0200) Subject: add size_type to MGInterfaceOperator X-Git-Tag: v9.0.0-rc1~984^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf2f5406fc8971a927c52587ead91bfe93691502;p=dealii.git 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. --- 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. */