Fix warnings about uninitialized struct members with GCC 6
This commit is contained in:
parent
cf4f4883ab
commit
69332b14ec
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ struct BlendResult
|
|||
/**/blend_f, blend_g,
|
||||
/**/blend_j, blend_k;
|
||||
|
||||
BlendResult() {}
|
||||
BlendResult() : blend_f(), blend_g(), blend_j(), blend_k() {}
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue