summaryrefslogtreecommitdiff
path: root/third_party/build/gsm/config.h
blob: 76bab720b4ffcbef4d245e488d598e3d5c24fb08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifdef _MSC_VER
#   pragma warning(disable: 4100)   // unreferenced formal parameter
#   pragma warning(disable: 4101)   // unreferenced local variable
#   pragma warning(disable: 4244)   // conversion from 'double ' to 'float '
#   pragma warning(disable: 4305)   // truncation from 'const double ' to 'float '
#   pragma warning(disable: 4018)   // signed/unsigned mismatch
//#   pragma warning(disable: 4701)   // local variable used without initialized
#endif

#if defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 402
#  pragma GCC diagnostic ignored "-Wunknown-pragmas"
#  pragma GCC diagnostic ignored "-Wunused-const-variable"
#endif

#include <string.h>
#include "../../gsm/inc/config.h"