From 022783df74ec0eadaa1ebd492f76c1107b586c0c Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Fri, 13 Sep 2019 08:52:22 +0200 Subject: [PATCH] Extra typename usage removed from ratio.h --- src/include/units/ratio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/units/ratio.h b/src/include/units/ratio.h index ce835212..157841f9 100644 --- a/src/include/units/ratio.h +++ b/src/include/units/ratio.h @@ -99,7 +99,7 @@ namespace std::experimental::units { } template - using ratio_multiply = typename detail::ratio_multiply_impl::type; + using ratio_multiply = detail::ratio_multiply_impl::type; // ratio_divide @@ -116,7 +116,7 @@ namespace std::experimental::units { } template - using ratio_divide = typename detail::ratio_divide_impl::type; + using ratio_divide = detail::ratio_divide_impl::type; // common_ratio @@ -133,6 +133,6 @@ namespace std::experimental::units { } template - using common_ratio = typename detail::common_ratio_impl::type; + using common_ratio = detail::common_ratio_impl::type; } // namespace std::experimental::units