mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #1509 from lioncash/noncopy
common: Minor changes to NonCopyable
This commit is contained in:
		
						commit
						a2024d7497
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -53,9 +53,9 @@ typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space | |||
| // An inheritable class to disallow the copy constructor and operator= functions
 | ||||
| class NonCopyable { | ||||
| protected: | ||||
|     NonCopyable() = default; | ||||
|     constexpr NonCopyable() = default; | ||||
|     ~NonCopyable() = default; | ||||
| 
 | ||||
|     NonCopyable(NonCopyable&) = delete; | ||||
|     NonCopyable& operator=(NonCopyable&) = delete; | ||||
|     NonCopyable(const NonCopyable&) = delete; | ||||
|     NonCopyable& operator=(const NonCopyable&) = delete; | ||||
| }; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue