equal
deleted
inserted
replaced
33 // C4503: 'function' : decorated name length exceeded, name was truncated |
33 // C4503: 'function' : decorated name length exceeded, name was truncated |
34 // C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning) |
34 // C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning) |
35 // C4996: 'function': was declared deprecated |
35 // C4996: 'function': was declared deprecated |
36 #ifdef _MSC_VER |
36 #ifdef _MSC_VER |
37 #pragma warning( disable : 4250 4355 4503 4800 4996 ) |
37 #pragma warning( disable : 4250 4355 4503 4800 4996 ) |
|
38 #endif |
|
39 |
|
40 #ifdef __GNUC__ |
|
41 // Needed by the [DI]GRAPH_TYPEDEFS marcos for gcc 4.8 |
|
42 #pragma GCC diagnostic ignored "-Wunused-local-typedefs" |
38 #endif |
43 #endif |
39 |
44 |
40 ///\file |
45 ///\file |
41 ///\brief LEMON core utilities. |
46 ///\brief LEMON core utilities. |
42 /// |
47 /// |