Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 956
BigKahuna Avatar asked Nov 03 '22 22:11

BigKahuna


1 Answers

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

like image 91
BigKahuna Avatar answered Nov 08 '22 08:11

BigKahuna