mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
Patch for gcc -Wall (order of initialization)
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user