From: Lei Qiao Date: Thu, 1 Feb 2018 01:49:55 +0000 (+0800) Subject: satisfy icc 15 about template arguments of std::map's X-Git-Tag: v9.0.0-rc1~486^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5837%2Fhead;p=dealii.git satisfy icc 15 about template arguments of std::map's --- diff --git a/include/deal.II/base/patterns.h b/include/deal.II/base/patterns.h index f266d5730e..03d1d1a357 100644 --- a/include/deal.II/base/patterns.h +++ b/include/deal.II/base/patterns.h @@ -1452,10 +1452,14 @@ namespace Patterns template struct is_list_compatible> : std::true_type {}; template struct is_map_compatible : std::false_type {}; - template struct is_map_compatible> : std::true_type {}; - template struct is_map_compatible> : std::true_type {}; - template struct is_map_compatible> : std::true_type {}; - template struct is_map_compatible> : std::true_type {}; + template + struct is_map_compatible> : std::true_type {}; + template + struct is_map_compatible> : std::true_type {}; + template + struct is_map_compatible> : std::true_type {}; + template + struct is_map_compatible> : std::true_type {}; } // type trait to use the implementation type traits as well as decay the type