From 0f5ed60f10c3d3ebdb511dc8a91336d961e5285d Mon Sep 17 00:00:00 2001 From: Anatoly Serdtcev Date: Fri, 14 Jun 2019 20:54:47 +0300 Subject: [PATCH] [geometry:meter] Fix compile warnings --- geometry/meter.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/geometry/meter.hpp b/geometry/meter.hpp index 0ea14f8630..29884e6314 100644 --- a/geometry/meter.hpp +++ b/geometry/meter.hpp @@ -6,14 +6,14 @@ using Meter = double; inline namespace literals { -inline constexpr auto operator"" _m(long double value) noexcept -> Meter +inline constexpr Meter operator"" _m(long double value) noexcept { - return {static_cast(value)}; + return static_cast(value); } -inline constexpr auto operator"" _km(long double value) noexcept -> Meter +inline constexpr Meter operator"" _km(long double value) noexcept { - return {static_cast(value * 1000.0)}; + return static_cast(value * 1000.0); } } // namespace literals } // namespace m2