mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable class
This commit is contained in:
		@@ -8,7 +8,7 @@
 | 
			
		||||
#include "common/common_types.h"
 | 
			
		||||
 | 
			
		||||
/// Generic ARM11 CPU interface
 | 
			
		||||
class ARM_Interface {
 | 
			
		||||
class ARM_Interface : NonCopyable {
 | 
			
		||||
public:
 | 
			
		||||
    ARM_Interface() {
 | 
			
		||||
        m_num_instructions = 0;
 | 
			
		||||
@@ -75,5 +75,4 @@ private:
 | 
			
		||||
 | 
			
		||||
    u64 m_num_instructions;                     ///< Number of instructions executed
 | 
			
		||||
 | 
			
		||||
    DISALLOW_COPY_AND_ASSIGN(ARM_Interface);
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
@@ -63,5 +63,4 @@ private:
 | 
			
		||||
 | 
			
		||||
    ARMul_State* m_state;
 | 
			
		||||
 | 
			
		||||
    DISALLOW_COPY_AND_ASSIGN(ARM_Interpreter);
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user