Fix warnings about uninitialized struct members with GCC 6

This commit is contained in:
Ignacio R. Morelle 2016-08-12 02:41:34 -04:00
parent cf4f4883ab
commit 69332b14ec

View file

@ -557,7 +557,7 @@ struct BlendResult
/**/blend_f, blend_g,
/**/blend_j, blend_k;
BlendResult() {}
BlendResult() : blend_f(), blend_g(), blend_j(), blend_k() {}
};