Correct some more warning instances of newer GCC and old boost not being a happy couple.

master
Nicky 2019-04-03 00:24:27 +02:00
parent 8d08048a84
commit f19447c3be
1 changed files with 9 additions and 0 deletions

View File

@ -24,6 +24,15 @@
*
*/
// <FS:ND> Disable some warnings on newer GCC versions. (Camd with GCC >= 8.2
#if LL_LINUX
#pragma GCC diagnostic ignored "-Wuninitialized"
#if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__ ) >= 80200
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
#endif
// </FS:ND>
#include "linden_common.h"
#include "llcalc.h"