Main MRPT website > C++ reference
MRPT logo

DisableMSVCWarnings.h

Go to the documentation of this file.
00001 
00002 #ifdef _MSC_VER
00003   // 4100 - unreferenced formal parameter (occurred e.g. in aligned_allocator::destroy(pointer p))
00004   // 4101 - unreferenced local variable
00005   // 4127 - conditional expression is constant
00006   // 4181 - qualifier applied to reference type ignored
00007   // 4211 - nonstandard extension used : redefined extern to static
00008   // 4244 - 'argument' : conversion from 'type1' to 'type2', possible loss of data
00009   // 4273 - QtAlignedMalloc, inconsistent DLL linkage
00010   // 4324 - structure was padded due to declspec(align())
00011   // 4512 - assignment operator could not be generated
00012   // 4522 - 'class' : multiple assignment operators specified
00013   // 4717 - 'function' : recursive on all control paths, function will cause runtime stack overflow
00014   #pragma warning( push )
00015   #pragma warning( disable : 4100 4101 4127 4181 4211 4244 4273 4324 4512 4522 4717 )
00016 #endif



Page generated by Doxygen 1.7.3 for MRPT 0.9.4 SVN: at Sat Mar 26 06:16:28 UTC 2011