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
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2018-04-04 04:33:54 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2018-04-05 12:12:34 +0300
commit98683edb44608033b41d0a1c4b381e7e134a2ffd (patch)
treeb03671124d2ceebd48fba4fc6203cc665c914d9f /routing
parentea9a592f1879d0b8a666c739c7a846548a1ece30 (diff)
Review fixes.
Diffstat (limited to 'routing')
-rw-r--r--routing/geometry.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/geometry.hpp b/routing/geometry.hpp
index 62913c37b5..17c5ecae06 100644
--- a/routing/geometry.hpp
+++ b/routing/geometry.hpp
@@ -90,9 +90,9 @@ public:
};
/// \brief This class supports loading geometry of roads for routing.
-/// \note Loaded information about road geometry is kept in evicted cache |m_featureIdToRoad|.
+/// \note Loaded information about road geometry is kept in a fixed-size cache |m_featureIdToRoad|.
/// On the other hand methods GetRoad() and GetPoint() return geometry information by reference.
-/// The reference is valid until the next call of GetRoad() or GetPoint() because the cache
+/// The reference may be invalid after the next call of GetRoad() or GetPoint() because the cache
/// item which is referred by returned reference may be evicted. It's done for performance reasons.
class Geometry final
{