tests/eina: suppress deprecated api warnings for eina abi test

Reviewers: devilhorns, ManMower

Reviewed By: ManMower

Subscribers: cedric, #reviewers, #committers

Tags: #efl_build

Differential Revision: https://phab.enlightenment.org/D6810
This commit is contained in:
Mike Blumenkrantz 2018-08-14 17:26:08 -04:00
parent c8ddf93707
commit 1c029b8fd9
1 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,13 @@
# include "config.h"
#endif
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wdeprecated-declarations"
#elif (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) || __GNUC__ > 4
# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
#include "eina_suite.h"
#if EINA_SIZEOF_WCHAR_T >= 4