Changed Emitter::size() to return std::size_t instead of unsigned

This commit is contained in:
Jesse Beder
2012-05-25 19:38:58 -05:00
parent bc3f72b565
commit d5130a4109
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ namespace YAML
return m_stream.str();
}
unsigned Emitter::size() const
std::size_t Emitter::size() const
{
return m_stream.pos();
}