From 385b5d412e01285ba0513272dbca63707b1f4584 Mon Sep 17 00:00:00 2001 From: Sergiy Kozyr Date: Sat, 2 Oct 2021 16:03:53 +0300 Subject: [PATCH] Formatting Signed-off-by: S. Kozyr --- platform/measurement_utils.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/platform/measurement_utils.cpp b/platform/measurement_utils.cpp index a45c40fc0e..33f8dfef1e 100644 --- a/platform/measurement_utils.cpp +++ b/platform/measurement_utils.cpp @@ -249,19 +249,19 @@ string FormatSpeedUnits(Units units) string FormatOsmLink(double lat, double lon, int zoom) { static char char_array[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_~"; - uint32_t x = round((lon + 180.0) / 360.0 * (1L<<32)); - uint32_t y = round((lat + 90.0) / 180.0 * (1L<<32)); - uint64_t code = bits::BitwiseMerge(y, x); + uint32_t const x = round((lon + 180.0) / 360.0 * (1L<<32)); + uint32_t const y = round((lat + 90.0) / 180.0 * (1L<<32)); + uint64_t const code = bits::BitwiseMerge(y, x); string osmUrl = "https://osm.org/go/"; - for (int i = 0; i < ((zoom+10)/3) ; ++i) + for (int i = 0; i < (zoom + 10) / 3; ++i) { - int digit = (code >> (58 - (6 * i))) & 0x3f; + int digit = (code >> (58 - 6 * i)) & 0x3f; osmUrl += char_array[digit]; } - for (int i = 0; i < ((zoom + 8) % 3); ++i) - osmUrl += "-"; + for (int i = 0; i < (zoom + 8) % 3; ++i) + osmUrl += "-"; return osmUrl + "?m="; }