Commit c150e994 authored by jbeder's avatar jbeder
Browse files

Patch for gcc -Wall (order of initialization)

parent 51457eec
......@@ -4,7 +4,7 @@
namespace YAML
{
Stream::Stream(std::istream& input): buffer(0), pos(0), line(0), column(0), size(0)
Stream::Stream(std::istream& input): pos(0), line(0), column(0), size(0), buffer(0)
{
if(!input)
return;
......
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