From: Wolfgang Bangerth Date: Wed, 25 Feb 2015 13:53:53 +0000 (-0600) Subject: Provide more specializations of ProductType for the non-C++11 case. X-Git-Tag: v8.3.0-rc1~415^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4ae79aa90515ba3fc33f02886232477327103b0;p=dealii.git Provide more specializations of ProductType for the non-C++11 case. --- diff --git a/include/deal.II/base/template_constraints.h b/include/deal.II/base/template_constraints.h index 80a7e1992b..fd4abf7109 100644 --- a/include/deal.II/base/template_constraints.h +++ b/include/deal.II/base/template_constraints.h @@ -388,6 +388,30 @@ struct ProductType typedef double type; }; +template <> +struct ProductType +{ + typedef double type; +}; + +template <> +struct ProductType +{ + typedef double type; +}; + +template <> +struct ProductType +{ + typedef long double type; +}; + +template <> +struct ProductType +{ + typedef long double type; +}; + #endif