Compressed the sequence-of-maps emitting (got rid of the unnecessary newline) - issue 61

This commit is contained in:
Jesse Beder
2011-03-03 03:37:54 +00:00
parent 9128d841f5
commit 1f9cc2d327
4 changed files with 45 additions and 31 deletions

View File

@@ -3,7 +3,7 @@
namespace YAML
{
EmitterState::EmitterState(): m_isGood(true), m_curIndent(0), m_requiresSeparation(false)
EmitterState::EmitterState(): m_isGood(true), m_curIndent(0), m_requiresSoftSeparation(false), m_requiresHardSeparation(false)
{
// start up
m_stateStack.push(ES_WAITING_FOR_DOC);