mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Fix -Wclass-memaccess warnings
We want to clear/memset the padding bytes, not just each member, so using assignment or {} initialization is not an option. To silence the warnings, cast the object pointer to u8* (which is not undefined behavior) to make it explicit to the compiler that we want to fill the object representation.
This commit is contained in:
parent
5a5c22dc6c
commit
eafe005672
5 changed files with 8 additions and 8 deletions
|
@ -25,7 +25,7 @@ void SetupUnit::Init(u8 primitiveType)
|
|||
|
||||
OutputVertexData* SetupUnit::GetVertex()
|
||||
{
|
||||
memset(m_VertWritePointer, 0, sizeof(*m_VertWritePointer));
|
||||
memset(reinterpret_cast<u8*>(m_VertWritePointer), 0, sizeof(*m_VertWritePointer));
|
||||
return m_VertWritePointer;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue