Pulled 'null' renaming fix

This commit is contained in:
Jesse Beder
2012-11-08 18:39:06 -06:00
4 changed files with 4 additions and 4 deletions

View File

@@ -383,7 +383,7 @@ namespace YAML
// . Does not parse any more tokens.
void Scanner::ThrowParserException(const std::string& msg) const
{
Mark mark = Mark::null();
Mark mark = Mark::null_mark();
if(!m_tokens.empty()) {
const Token& token = m_tokens.front();
mark = token.mark;