mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Common: Use C++11 deleted functions for NonCopyable
This commit is contained in:
		
							parent
							
								
									1fee769aa0
								
							
						
					
					
						commit
						7a4b717772
					
				| @ -14,15 +14,13 @@ | ||||
| #define STACKALIGN | ||||
| 
 | ||||
| // An inheritable class to disallow the copy constructor and operator= functions
 | ||||
| class NonCopyable | ||||
| { | ||||
| class NonCopyable { | ||||
| protected: | ||||
|     NonCopyable() {} | ||||
|     NonCopyable(const NonCopyable&&) {} | ||||
|     void operator=(const NonCopyable&&) {} | ||||
| private: | ||||
|     NonCopyable(NonCopyable&); | ||||
|     NonCopyable& operator=(NonCopyable& other); | ||||
|     NonCopyable() = default; | ||||
|     ~NonCopyable() = default; | ||||
| 
 | ||||
|     NonCopyable(NonCopyable&) = delete; | ||||
|     NonCopyable& operator=(NonCopyable&) = delete; | ||||
| }; | ||||
| 
 | ||||
| #include "common/assert.h" | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Yuri Kunde Schlesner
						Yuri Kunde Schlesner