summaryrefslogtreecommitdiffstats
path: root/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/warning.h
blob: 2a236abac2a2d8b953a61ad53544b0f8fb9df13e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef MP4V2_PLATFORM_WARNING_H
#define MP4V2_PLATFORM_WARNING_H

///////////////////////////////////////////////////////////////////////////////

// TODO-KB: clean code to avoid disabling warnings

#if defined( __GNUC__ ) && ( __GNUC__ >= 4 ) && ( __GNUC_MINOR__ >= 2 )
#   pragma GCC diagnostic ignored "-Wwrite-strings"
#elif defined( _MSC_VER )
#   pragma warning( disable: 4244 )
#   pragma warning( disable: 4251 )
#   pragma warning( disable: 4800 )
#   pragma warning( disable: 4996 )
#endif

///////////////////////////////////////////////////////////////////////////////

// this macro is used to mark printf-style functions for GCC to examine
// the format string and arguments and issue warnings if needed

#if defined( __GNUC__ )
#   define MP4V2_WFORMAT_PRINTF(i,j)  __attribute__((format(__printf__,i,j)))
#else
#   define MP4V2_WFORMAT_PRINTF(i,j)
#endif

///////////////////////////////////////////////////////////////////////////////

#endif // MP4V2_PLATFORM_WARNING_H