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 | #define STACKALIGN | ||||||
| 
 | 
 | ||||||
| // An inheritable class to disallow the copy constructor and operator= functions
 | // An inheritable class to disallow the copy constructor and operator= functions
 | ||||||
| class NonCopyable | class NonCopyable { | ||||||
| { |  | ||||||
| protected: | protected: | ||||||
|     NonCopyable() {} |     NonCopyable() = default; | ||||||
|     NonCopyable(const NonCopyable&&) {} |     ~NonCopyable() = default; | ||||||
|     void operator=(const NonCopyable&&) {} | 
 | ||||||
| private: |     NonCopyable(NonCopyable&) = delete; | ||||||
|     NonCopyable(NonCopyable&); |     NonCopyable& operator=(NonCopyable&) = delete; | ||||||
|     NonCopyable& operator=(NonCopyable& other); |  | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| #include "common/assert.h" | #include "common/assert.h" | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Yuri Kunde Schlesner
						Yuri Kunde Schlesner