Correct DebugPrint implementation.

This commit is contained in:
Alex Zolotarev 2016-03-10 13:38:05 +03:00 committed by Sergey Yershov
parent 00ccc44622
commit 51ae713240

View file

@ -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
{