From ea4a6c855ddddb7ad6683ca83a8f1709b1af7cd2 Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Tue, 24 Jul 2018 11:08:07 +0200 Subject: [PATCH] Addressed Daniel's comments --- include/deal.II/boost_adaptors/point.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }; /** -- 2.39.5