Ivan Ustûžanin 049ededf9f Add gcc 32-bit build and improve build process
1. Include SciLexer build in Notepad++ build.
2. Remove -fpermissive, auto -j in make.

Fix #9989, close #10540
2021-09-13 23:17:11 +02:00

15 lines
435 B
C

// 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(...)