2021-09-04 19:29:29 +00:00
|
|
|
// this file contains fixes needed for Notepad++ to be built by GCC
|
|
|
|
// the makefile automatically includes this file
|
|
|
|
|
|
|
|
static constexpr unsigned int max(unsigned int a, unsigned int b) {
|
|
|
|
return a > b ? a : b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr unsigned int min(unsigned int a, unsigned int b) {
|
|
|
|
return a < b ? a : b;
|
|
|
|
}
|
|
|
|
|
|
|
|
// __try and __except are unknown to GCC, so convert them to something eligible
|
|
|
|
#define __try try
|
|
|
|
#define __except(x) catch(...)
|
2022-01-22 17:54:22 +00:00
|
|
|
|
|
|
|
#ifndef PROCESSOR_ARCHITECTURE_ARM64
|
|
|
|
#define PROCESSOR_ARCHITECTURE_ARM64 12
|
|
|
|
#endif
|