mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Common: Clean up meta-template logic in BitField
This commit is contained in:
		
							parent
							
								
									2cdb40d709
								
							
						
					
					
						commit
						c1a9e94068
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -121,11 +121,11 @@ private: | |||
|     // T is an enumeration. Note that T is wrapped within an enable_if in the
 | ||||
|     // former case to workaround compile errors which arise when using
 | ||||
|     // std::underlying_type<T>::type directly.
 | ||||
|     typedef typename std::conditional<std::is_enum<T>::value, std::underlying_type<T>, | ||||
|                                       std::enable_if<true, T>>::type::type StorageType; | ||||
|     using StorageType = typename std::conditional_t<std::is_enum<T>::value, std::underlying_type<T>, | ||||
|                                                     std::enable_if<true, T>>::type; | ||||
| 
 | ||||
|     // Unsigned version of StorageType
 | ||||
|     typedef typename std::make_unsigned<StorageType>::type StorageTypeU; | ||||
|     using StorageTypeU = std::make_unsigned_t<StorageType>; | ||||
| 
 | ||||
| public: | ||||
|     /// Constants to allow limited introspection of fields if needed
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue