mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Remove GCC version checks
Citra can't be compiled using GCC <7 because of required C++17 support, so these version checks don't need to exist anymore.
This commit is contained in:
		
							parent
							
								
									90c780e6f3
								
							
						
					
					
						commit
						030814b1cb
					
				@ -28,8 +28,8 @@
 | 
				
			|||||||
#include <cstring>
 | 
					#include <cstring>
 | 
				
			||||||
#include "common/common_types.h"
 | 
					#include "common/common_types.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// GCC 4.6+
 | 
					// GCC
 | 
				
			||||||
#if __GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
 | 
					#ifdef __GNUC__
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if __BYTE_ORDER__ && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) && !defined(COMMON_LITTLE_ENDIAN)
 | 
					#if __BYTE_ORDER__ && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) && !defined(COMMON_LITTLE_ENDIAN)
 | 
				
			||||||
#define COMMON_LITTLE_ENDIAN 1
 | 
					#define COMMON_LITTLE_ENDIAN 1
 | 
				
			||||||
@ -38,7 +38,7 @@
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// LLVM/clang
 | 
					// LLVM/clang
 | 
				
			||||||
#elif __clang__
 | 
					#elif defined(__clang__)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if __LITTLE_ENDIAN__ && !defined(COMMON_LITTLE_ENDIAN)
 | 
					#if __LITTLE_ENDIAN__ && !defined(COMMON_LITTLE_ENDIAN)
 | 
				
			||||||
#define COMMON_LITTLE_ENDIAN 1
 | 
					#define COMMON_LITTLE_ENDIAN 1
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user