mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Common: Use C++11 deleted functions for NonCopyable
This commit is contained in:
		
							parent
							
								
									1fee769aa0
								
							
						
					
					
						commit
						7a4b717772
					
				
					 1 changed files with 6 additions and 8 deletions
				
			
		|  | @ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue