Commit 9a1a3974 authored by Jesse Beder's avatar Jesse Beder
Browse files

Patch for gcc -Wall (order of initialization)

parent e76521c0
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
namespace YAML 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) if(!input)
return; 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