Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorSergey Magidovich <mgsergio@mapswithme.com>2017-02-09 11:57:09 +0300
committerSergey Magidovich <mgsergio@mapswithme.com>2017-02-09 11:57:09 +0300
commit56c926d5347eb0f18cd04f8bdf95303d99383541 (patch)
tree4d2b32ac60a607f1b6b11f8ea1b9f9ff98f93f25 /base
parentf55d5545a65cb4f0de835ea8e68b3ebd71d8eb10 (diff)
Code review.
Diffstat (limited to 'base')
-rw-r--r--base/math.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/math.hpp b/base/math.hpp
index 6549fe059a..c54f74843c 100644
--- a/base/math.hpp
+++ b/base/math.hpp
@@ -189,7 +189,7 @@ Number constexpr GCD(Number const a, Number const b) { return b == 0 ? a : GCD(b
template <typename Number,
typename EnableIf = typename std::enable_if<
std::is_integral<Number>::value, void>::type>
-// Lowest common multiple.
+// Lowest Common Multiple.
Number constexpr LCM(Number const a, Number const b) { return a / GCD(a, b) * b; }
/// Calculate hash for the pair of values.