Commit ab36ca93 authored by Jesse Beder's avatar Jesse Beder
Browse files

Updated from core (emitter)

parents 6c690e82 d5130a41
...@@ -30,7 +30,7 @@ namespace YAML ...@@ -30,7 +30,7 @@ namespace YAML
// output // output
const char *c_str() const; const char *c_str() const;
unsigned size() const; std::size_t size() const;
// state checking // state checking
bool good() const; bool good() const;
......
...@@ -24,7 +24,7 @@ namespace YAML ...@@ -24,7 +24,7 @@ namespace YAML
return m_stream.str(); return m_stream.str();
} }
unsigned Emitter::size() const std::size_t Emitter::size() const
{ {
return m_stream.pos(); return m_stream.pos();
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment