Skip to content
Permalink
Browse files
Merge pull request #7004 from lioncash/bp
BPMemory: Silence a -Wmissing-braces warning
  • Loading branch information
JosJuice committed May 28, 2018
2 parents f05eb10 + 72feeb4 commit b2d8d2a
Showing 1 changed file with 9 additions and 4 deletions.
@@ -984,10 +984,15 @@ union CopyFilterCoefficients

Values GetCoefficients() const
{
return {
static_cast<u8>(w0), static_cast<u8>(w1), static_cast<u8>(w2), static_cast<u8>(w3),
static_cast<u8>(w4), static_cast<u8>(w5), static_cast<u8>(w6),
};
return {{
static_cast<u8>(w0),
static_cast<u8>(w1),
static_cast<u8>(w2),
static_cast<u8>(w3),
static_cast<u8>(w4),
static_cast<u8>(w5),
static_cast<u8>(w6),
}};
}
};

0 comments on commit b2d8d2a

Please sign in to comment.