30 lines
1.3 KiB
C
30 lines
1.3 KiB
C
#if !defined(__TmpCPA_h__)
|
|
#define __TmpCPA_h__
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
/****************************************
|
|
* Here is the list of disabled WARNING *
|
|
****************************************/
|
|
#if defined(VISUAL)
|
|
#pragma warning(disable:4010) /** single-line comment contains line-continuation character **/
|
|
#pragma warning(disable:4032) /** formal parameter 1 has different type when promoted **/
|
|
#pragma warning(disable:4100) /** unreferenced formal parameter **/
|
|
#pragma warning(disable:4115) /** named type definition in parentheses **/
|
|
#pragma warning(disable:4127) /** conditional expression is constant **/
|
|
#pragma warning(disable:4201) /** nonstandard extension used : nameless struct/union **/
|
|
#pragma warning(disable:4214) /** nonstandard extension used : bit field types other than int **/
|
|
#pragma warning(disable:4310) /** cast truncates constant value **/
|
|
#pragma warning(disable:4514) /** unreferenced inline function has been removed **/
|
|
#pragma warning(disable:4702) /** unreachable code **/
|
|
#pragma warning(disable:4711) /** selected for automatic inline expansion **/
|
|
#endif /* VISUAL */
|
|
|
|
#include "MMG.h"
|
|
|
|
#endif /* __TmpCPA_h__ */
|