This commit is contained in:
Jean-Philip Desjardins 2020-12-28 20:53:18 -05:00
parent 4c5148a425
commit 97c838ffef
2 changed files with 1 additions and 5 deletions

View file

@ -26,10 +26,6 @@ CSpu2::CSpu2(CSpuBase& spuBase0, CSpuBase& spuBase1)
} }
} }
CSpu2::~CSpu2()
{
}
void CSpu2::Reset() void CSpu2::Reset()
{ {
for(unsigned int i = 0; i < CORE_NUM; i++) for(unsigned int i = 0; i < CORE_NUM; i++)

View file

@ -10,7 +10,7 @@ namespace Iop
{ {
public: public:
CSpu2(CSpuBase&, CSpuBase&); CSpu2(CSpuBase&, CSpuBase&);
virtual ~CSpu2(); virtual ~CSpu2() = default;
CSpu2(const CSpu2&) = delete; CSpu2(const CSpu2&) = delete;
CSpu2& operator=(const CSpu2&) = delete; CSpu2& operator=(const CSpu2&) = delete;