From 0811ca92e16f2474a2915a855dd77dec0d349fa3 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 3 Apr 2025 08:00:09 +0100 Subject: [PATCH] refactor(example): explicit conversions added for `ranged_representation` arguments --- example/include/geographic.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/example/include/geographic.h b/example/include/geographic.h index c163afbb..ea62b93f 100644 --- a/example/include/geographic.h +++ b/example/include/geographic.h @@ -79,10 +79,11 @@ inline constexpr struct prime_meridian final : mp_units::absolute_point_origin -using latitude = mp_units::quantity_point>; +using latitude = mp_units::quantity_point>; template -using longitude = mp_units::quantity_point>; +using longitude = + mp_units::quantity_point>; template std::basic_ostream& operator<<(std::basic_ostream& os, const latitude& lat)