This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/geometry/meter.hpp
2019-06-17 12:10:37 +03:00

19 lines
347 B
C++

#pragma once
namespace m2
{
using Meter = double;
inline namespace literals
{
inline constexpr Meter operator"" _m(long double value) noexcept
{
return static_cast<double>(value);
}
inline constexpr Meter operator"" _km(long double value) noexcept
{
return static_cast<double>(value * 1000.0);
}
} // namespace literals
} // namespace m2