mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-04 04:34:07 +01:00 
			
		
		
		
	Silence std::aligned_storage warnings as it's deprecated in C++23,
replace it with alignas() and a C array
This commit is contained in:
		
							parent
							
								
									a83a5d2e4c
								
							
						
					
					
						commit
						f294b886db
					
				@ -11,7 +11,7 @@ namespace Common {
 | 
				
			|||||||
namespace detail {
 | 
					namespace detail {
 | 
				
			||||||
template <typename T, size_t Size, size_t Align>
 | 
					template <typename T, size_t Size, size_t Align>
 | 
				
			||||||
struct TypedStorageImpl {
 | 
					struct TypedStorageImpl {
 | 
				
			||||||
    std::aligned_storage_t<Size, Align> storage_;
 | 
					    alignas(Align) u8 storage_[Size];
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
} // namespace detail
 | 
					} // namespace detail
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user