mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Changed macro for disallowing copy-ctor and =operator into an inheritable class. Removed IrPointer.ini (no longer used)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6421 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
#include "MailHandler.h"
|
||||
#include "UCodes/UCodes.h"
|
||||
|
||||
class CDSPHandler
|
||||
class CDSPHandler : NonCopyable
|
||||
{
|
||||
public:
|
||||
void Update(int cycles);
|
||||
@ -58,7 +58,6 @@ public:
|
||||
private:
|
||||
CDSPHandler();
|
||||
~CDSPHandler();
|
||||
DISALLOW_COPY_AND_ASSIGN(CDSPHandler);
|
||||
|
||||
// singleton instance
|
||||
static CDSPHandler* m_pInstance;
|
||||
|
Reference in New Issue
Block a user