'long long long' is too long for GCC using log4cpp

2.5k Views Asked by At

I am developing a QT application where I use the logging library log4cpp. But now, where the headerfiles of log4pp are included, I get this compiling error: 'long long long' is too long for GCC

When I go to the source of this error, the headerfile stdint.h is opened at this line:

__MINGW_EXTENSION typedef long long int64_t;

Can anybody tell me how to handle this?

1

There are 1 best solutions below

0
On

Okay, solved it, I just needet to include the stdint.h at first oO