mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00: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:
parent
b4ffd640b7
commit
73ed235fd1
10 changed files with 17 additions and 211 deletions
|
@ -23,7 +23,7 @@
|
|||
#define STATISTICS 1
|
||||
|
||||
// NEVER inherit from this class.
|
||||
struct Config
|
||||
struct Config : NonCopyable
|
||||
{
|
||||
Config();
|
||||
void Load();
|
||||
|
@ -44,9 +44,6 @@ struct Config
|
|||
|
||||
u32 drawStart;
|
||||
u32 drawEnd;
|
||||
|
||||
private:
|
||||
DISALLOW_COPY_AND_ASSIGN(Config);
|
||||
};
|
||||
|
||||
extern Config g_Config;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue