mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Common/PointerWrap: Remove DoPOD
This was added in385d8e2b15
, but became somewhat redundant with Do in4c7bbd96e4
, and completely redundant now that std::is_trivially_copyable_v is well-supported.
This commit is contained in:
parent
7498eb1e6c
commit
e8221d7948
14 changed files with 30 additions and 36 deletions
|
@ -107,9 +107,9 @@ void SCPFifoStruct::DoState(PointerWrap& p)
|
|||
|
||||
void DoState(PointerWrap& p)
|
||||
{
|
||||
p.DoPOD(m_CPStatusReg);
|
||||
p.DoPOD(m_CPCtrlReg);
|
||||
p.DoPOD(m_CPClearReg);
|
||||
p.Do(m_CPStatusReg);
|
||||
p.Do(m_CPCtrlReg);
|
||||
p.Do(m_CPClearReg);
|
||||
p.Do(m_bboxleft);
|
||||
p.Do(m_bboxtop);
|
||||
p.Do(m_bboxright);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue