From 135289ef0dfa5a63fb3496b54ae0e561b167b146 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Fri, 21 Apr 2017 15:13:14 +0300 Subject: [PATCH] Review fixes. --- routing/cross_mwm_graph.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/routing/cross_mwm_graph.cpp b/routing/cross_mwm_graph.cpp index 805a243865..6d550b24c3 100644 --- a/routing/cross_mwm_graph.cpp +++ b/routing/cross_mwm_graph.cpp @@ -146,7 +146,9 @@ void CrossMwmGraph::GetTwins(Segment const & s, bool isOutgoing, vector bool allNeighborsHaveCrossMwmSection = false; GetAllLoadedNeighbors(s.GetMwmId(), neighbors, allNeighborsHaveCrossMwmSection); MwmStatus const currentMwmStatus = GetMwmStatus(s.GetMwmId()); - CHECK(currentMwmStatus != MwmStatus::NotLoaded, ("Current mwm is not loaded. Mwm:", m_numMwmIds->GetFile(s.GetMwmId()))); + CHECK(currentMwmStatus != MwmStatus::NotLoaded, + ("Current mwm is not loaded. Mwm:", m_numMwmIds->GetFile(s.GetMwmId()), "currentMwmStatus:", + currentMwmStatus)); if (allNeighborsHaveCrossMwmSection && currentMwmStatus == MwmStatus::CrossMwmSectionExists) { DeserializeTransitions(neighbors);