From 4ce786b3577f4bfee452ed38121c9474d0ae2ce5 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Wed, 24 Feb 2016 21:33:11 +0100 Subject: [PATCH] Change stream operator of strong typedef --- include/util/strong_typedef.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/util/strong_typedef.hpp b/include/util/strong_typedef.hpp index 911194443..2353640e4 100644 --- a/include/util/strong_typedef.hpp +++ b/include/util/strong_typedef.hpp @@ -38,7 +38,7 @@ namespace osrm }; \ inline std::ostream &operator<<(std::ostream &stream, const To &inst) \ { \ - return stream << #To << '(' << inst.x << ')'; \ + return stream << inst.x; \ } #define OSRM_STRONG_TYPEDEF_HASHABLE(From, To) \