mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-15 19:48:00 +01:00
changed the way the output is indented
This commit is contained in:
parent
dc2e00bf00
commit
a70768f24e
1 changed files with 4 additions and 4 deletions
|
@ -20,15 +20,15 @@ class basic_Writer : public basic_XMLFilterImpl<string_type>
|
|||
typedef Unicode<charT> UnicodeT;
|
||||
|
||||
basic_Writer(std::ostream& stream) :
|
||||
stream_(&stream),
|
||||
indent_(2)
|
||||
indent_(2),
|
||||
stream_(&stream)
|
||||
{
|
||||
} // basic_Writer
|
||||
|
||||
basic_Writer(ostreamT& stream, XMLReaderT& parent) :
|
||||
XMLFilterT(parent),
|
||||
stream_(&stream),
|
||||
indent_(2)
|
||||
indent_(2),
|
||||
stream_(&stream)
|
||||
{
|
||||
} // basic_Writer
|
||||
|
||||
|
|
Loading…
Reference in a new issue