Ignoring overzealous GCC warnings (#883)

This commit is contained in:
ocornut
2016-11-11 20:17:35 +01:00
parent 81eefb704b
commit 8553bab241
3 changed files with 3 additions and 0 deletions

View File

@ -46,6 +46,7 @@
#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used
#pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function
#pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value
#pragma GCC diagnostic ignored "-Wcast-qual" // warning: cast from type 'xxxx' to type 'xxxx' casts away qualifiers
#endif
//-------------------------------------------------------------------------