1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 21:05:35 +03:00

Merge pull request #4801 from wind0r/fix_f7_warnings

ignore padding warning in accgyro tests
This commit is contained in:
Michael Keller 2017-12-22 08:59:47 +13:00 committed by GitHub
commit b3d6ff3328
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@
#pragma GCC diagnostic push #pragma GCC diagnostic push
#if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD) #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
#include <pthread.h> #include <pthread.h>
#else #elif !defined(UNIT_TEST)
#pragma GCC diagnostic warning "-Wpadded" #pragma GCC diagnostic warning "-Wpadded"
#endif #endif