From 51ae713240861910bad80c0a409c81f92f482e5a Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 10 Mar 2016 13:38:05 +0300 Subject: [PATCH] Correct DebugPrint implementation. --- editor/changeset_wrapper.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/editor/changeset_wrapper.cpp b/editor/changeset_wrapper.cpp index 2f56f951f5..25d2f2b5c6 100644 --- a/editor/changeset_wrapper.cpp +++ b/editor/changeset_wrapper.cpp @@ -14,12 +14,15 @@ using editor::XMLFeature; -string DebugPrint(pugi::xml_document const & doc) +namespace pugi +{ +string DebugPrint(xml_document const & doc) { ostringstream stream; doc.print(stream, " "); return stream.str(); } +} // namespace pugi namespace osm {