From: Luca Heltai Date: Tue, 24 Jul 2018 09:08:07 +0000 (+0200) Subject: Addressed Daniel's comments X-Git-Tag: v9.1.0-rc1~895^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6950%2Fhead;p=dealii.git Addressed Daniel's comments --- diff --git a/include/deal.II/boost_adaptors/point.h b/include/deal.II/boost_adaptors/point.h index 376a55242f..224974d64c 100644 --- a/include/deal.II/boost_adaptors/point.h +++ b/include/deal.II/boost_adaptors/point.h @@ -33,7 +33,7 @@ namespace boost template struct tag> { - typedef point_tag type; + using type = point_tag; }; /** @@ -42,7 +42,7 @@ namespace boost template struct coordinate_type> { - typedef Number type; + using type = Number; }; /** @@ -52,7 +52,7 @@ namespace boost template struct coordinate_system> { - typedef cs::cartesian type; + using type = cs::cartesian; }; /**