Fixed basic block seq indentation

This commit is contained in:
Jesse Beder
2012-05-21 21:11:03 -05:00
parent b5d8241dfa
commit 23fb2dc811
3 changed files with 13 additions and 5 deletions

View File

@@ -119,6 +119,11 @@ namespace YAML
return m_groups.empty() ? 0 : m_groups.top().indent;
}
std::size_t EmitterState::CurGroupChildCount() const
{
return m_groups.empty() ? 0 : m_groups.top().childCount;
}
void EmitterState::ClearModifiedSettings()
{
m_modifiedSettings.clear();