2008-12-18 21:04:06 +00:00
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
2009-12-12 14:49:43 +01:00
|
|
|
// 4273 - QtAlignedMalloc, inconsistent DLL linkage
|
|
|
|
|
// 4100 - unreferenced formal parameter (occurred e.g. in aligned_allocator::destroy(pointer p))
|
2009-12-14 10:32:43 +01:00
|
|
|
// 4101 - unreferenced local variable
|
2010-06-08 20:21:55 +02:00
|
|
|
// 4324 - structure was padded due to declspec(align())
|
2009-12-14 10:32:43 +01:00
|
|
|
// 4512 - assignment operator could not be generated
|
2008-12-18 21:04:06 +00:00
|
|
|
#pragma warning( push )
|
2010-06-08 20:21:55 +02:00
|
|
|
#pragma warning( disable : 4100 4101 4181 4244 4127 4211 4273 4324 4512 4522 4717 )
|
2008-12-18 21:04:06 +00:00
|
|
|
#endif
|