diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pugixml.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index ee573c6..e8c10a7 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -4014,7 +4014,10 @@ PUGI__NS_BEGIN { if (!node->first_child) { - writer.write(' ', '/', '>'); + if ((flags & format_raw) == 0) + writer.write(' '); + + writer.write('/', '>'); return false; } |