From: Wolfgang Bangerth Date: Wed, 25 Feb 2015 14:22:38 +0000 (-0600) Subject: Provide even more specializations of ProductType in non-C++11 mode. X-Git-Tag: v8.3.0-rc1~415^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd1baf952df839361af5e367c7ce1e12fbc90814;p=dealii.git Provide even more specializations of ProductType in non-C++11 mode. --- diff --git a/include/deal.II/base/template_constraints.h b/include/deal.II/base/template_constraints.h index fd4abf7109..d2b0cbc04a 100644 --- a/include/deal.II/base/template_constraints.h +++ b/include/deal.II/base/template_constraints.h @@ -412,6 +412,31 @@ struct ProductType typedef long double type; }; +template <> +struct ProductType +{ + typedef double type; +}; + +template <> +struct ProductType +{ + typedef double type; +}; + +template <> +struct ProductType +{ + typedef float type; +}; + +template <> +struct ProductType +{ + typedef float type; +}; + + #endif