Added case for parsing a compact key: value pair in a flow sequence with a null key

This commit is contained in:
jbeder
2009-10-29 22:01:01 +00:00
parent 011a608b5a
commit 7c4a8dad85
3 changed files with 23 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ namespace YAML
void ParseBlock(Scanner *pScanner, const ParserState& state);
void ParseFlow(Scanner *pScanner, const ParserState& state);
void ParseCompact(Scanner *pScanner, const ParserState& state);
void ParseCompactWithNoKey(Scanner *pScanner, const ParserState& state);
private:
node_map m_data;