Compiling problems in 1.8.8

I'm trying to compile this project and it worked great before updating to 1.8.8. I also got reports of it compiling just fine on 1.8.9.
Anyone know if there was some breaking changes introduced in 1.8.8?

My errors is:

Arduino:1.8.8 (Mac OS X), Kort:"NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Enabled, 4M (no SPIFFS), v2 Lower Memory, Disabled, None, Only Sketch, 115200"

WARNING: Category 'LED' in library CHT16K33 LED Matrix Library is not valid. Setting to 'Uncategorized'
WARNING: Category 'Input' in library MechInputs is not valid. Setting to 'Uncategorized'
EspSparsnasGateway:361:17: error: 'uint32_t' was not declared in this scope
 bool initialize(uint32_t frequency) {
                 ^
EspSparsnasGateway:628:14: error: variable or field 'setMode' declared void
 void setMode(uint8_t newMode) {
              ^
EspSparsnasGateway:628:14: error: 'uint8_t' was not declared in this scope
RFM69functions:1:1: error: 'uint32_t' does not name a type
 uint32_t getFrequency() {
 ^
RFM69functions:16:1: error: 'uint8_t' does not name a type
 uint8_t readReg(uint8_t addr) {
 ^
RFM69functions:24:15: error: variable or field 'writeReg' declared void
 void writeReg(uint8_t addr, uint8_t value) {
               ^
RFM69functions:24:15: error: 'uint8_t' was not declared in this scope
RFM69functions:24:29: error: 'uint8_t' was not declared in this scope
 void writeReg(uint8_t addr, uint8_t value) {
                             ^

Entire error is here: Arduino:1.8.8 (Mac OS X), Kort:"NodeMCU 1.0 (ESP-12E Module), 80 MHz, Flash, Ena - Pastebin.com

Try adding #include <stdint.h>.

You can find my explanation of the problem and suggestions for fixing it here:

PieterP:
Try adding #include <stdint.h>.

Nope, didn't do any difference!

pert:
You can find my explanation of the problem and suggestions for fixing it here:
Compilation errors with Arduino IDE 1.8.8 · Issue #24 · bphermansson/EspSparsnasGateway · GitHub

Sweet, I'll just continue on that issue instead of here! :smiley:

for everyone else that might run into the same problem, move all #include to the top of the file!