CoinPragma.hpp
Go to the documentation of this file.
1 /* $Id: CoinPragma.hpp 1215 2009-11-05 11:03:04Z forrest $ */
2 // Copyright (C) 2000, International Business Machines
3 // Corporation and others. All Rights Reserved.
4 #ifndef CoinPragma_H
5 #define CoinPragma_H
6 
7 //-------------------------------------------------------------------
8 //
9 // This is a file which can contain Pragma's that are
10 // generally applicable to any source file.
11 //
12 //-------------------------------------------------------------------
13 
14 #if defined(_MSC_VER)
15 // Turn off compiler warning about long names
16 # pragma warning(disable:4786)
17 // Turn off compiler warning:
18 // "empty controlled statement found; is this the intent?"
19 # pragma warning(disable:4390)
20 // Turn off compiler warning about deprecated functions
21 # pragma warning(disable:4996)
22 #endif
23 
24 #endif