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:
Diffstat (limited to 'routing/index_graph.cpp')
-rw-r--r--routing/index_graph.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/index_graph.cpp b/routing/index_graph.cpp
index c8820bc01e..9c4264b9f0 100644
--- a/routing/index_graph.cpp
+++ b/routing/index_graph.cpp
@@ -60,8 +60,8 @@ namespace routing
IndexGraph::IndexGraph(shared_ptr<Geometry> geometry, shared_ptr<EdgeEstimator> estimator)
: m_geometry(geometry), m_estimator(move(estimator))
{
- ASSERT(m_geometry, ());
- ASSERT(m_estimator, ());
+ CHECK(m_geometry, ());
+ CHECK(m_estimator, ());
}
void IndexGraph::GetEdgeList(Segment const & segment, bool isOutgoing, vector<SegmentEdge> & edges)