mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	common_types: Make NonCopyable constructor constexpr
This commit is contained in:
		
							parent
							
								
									45e2fce7c0
								
							
						
					
					
						commit
						38376b833e
					
				@ -53,7 +53,7 @@ typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space
 | 
				
			|||||||
// 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() = default;
 | 
					    constexpr NonCopyable() = default;
 | 
				
			||||||
    ~NonCopyable() = default;
 | 
					    ~NonCopyable() = default;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    NonCopyable(const NonCopyable&) = delete;
 | 
					    NonCopyable(const NonCopyable&) = delete;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user