From 3843276acb32798de589381da00843dca72580b5 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Mon, 12 Nov 2018 21:02:18 +0300 Subject: [PATCH] [routing] add boolalpha for segment --- routing/segment.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routing/segment.hpp b/routing/segment.hpp index 09430848b3..052265bbb2 100644 --- a/routing/segment.hpp +++ b/routing/segment.hpp @@ -7,6 +7,7 @@ #include "routing_common/num_mwm_id.hpp" #include +#include #include #include @@ -116,7 +117,7 @@ private: inline std::string DebugPrint(Segment const & segment) { std::ostringstream out; - out << "Segment(" << segment.GetMwmId() << ", " << segment.GetFeatureId() << ", " + out << std::boolalpha << "Segment(" << segment.GetMwmId() << ", " << segment.GetFeatureId() << ", " << segment.GetSegmentIdx() << ", " << segment.IsForward() << ")"; return out.str(); }