Small refactoring.

This commit is contained in:
Jesse Beder 2008-06-28 22:05:51 +00:00
parent 72b443375c
commit 2e27c5d9c3
4 changed files with 20 additions and 42 deletions

View file

@ -288,22 +288,6 @@ namespace YAML
}
}
// IncreaseFlowLevel
void Scanner::IncreaseFlowLevel()
{
// TODO: Push simple key
m_flowLevel++;
}
// DecreaseFlowLevel
void Scanner::DecreaseFlowLevel()
{
if(m_flowLevel > 0) {
m_flowLevel--;
// TODO: Pop simple key
}
}
// GetNextToken
// . Returns the next token on the queue, and scans if only we need to.
Token *Scanner::GetNextToken()