"git@developer.sourcefind.cn:cnjsdfcy/simbricks.git" did not exist on "1659e56a587223f4ad50902df502660ec1e4ab8c"
Commit c150e994 authored by jbeder's avatar jbeder
Browse files

Patch for gcc -Wall (order of initialization)

parent 51457eec
...@@ -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