mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-11-03 21:14:08 +01:00 
			
		
		
		
	ref https://github.com/notepad-plus-plus/notepad-plus-plus/issues/11147#issuecomment-1365724574 Close #12784
		
			
				
	
	
		
			11 lines
		
	
	
		
			344 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			344 B
		
	
	
	
		
			C
		
	
	
	
	
	
// this file contains fixes needed for Notepad++ to be built by GCC
 | 
						|
// the makefile automatically includes this file
 | 
						|
 | 
						|
// __try and __except are unknown to GCC, so convert them to something eligible
 | 
						|
#define __try try
 | 
						|
#define __except(x) catch(...)
 | 
						|
 | 
						|
#ifndef PROCESSOR_ARCHITECTURE_ARM64
 | 
						|
	#define PROCESSOR_ARCHITECTURE_ARM64            12
 | 
						|
#endif
 |