epoc32/include/stdapis/stlport/config/_msvc_warnings_off.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 0 061f57f2323e
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
williamr@2
     1
# if (_MSC_VER > 1000)
williamr@2
     2
// #pragma warning ( disable : 4251 )	// ignore template classes being exported in .dll's
williamr@2
     3
/* 
williamr@2
     4
 * "this used in base member initializer list"
williamr@2
     5
 * arrow operator warning
williamr@2
     6
 * copy constr & assignment cannot be generated
williamr@2
     7
 * "forcing value to bool 'true' or 'false'
williamr@2
     8
 * typedef used instaead of full type
williamr@2
     9
 * 4018 : signed/unsigned mismatch, 4146 - result still unsigned 
williamr@2
    10
 * 4100: unreferenced formal parameter
williamr@2
    11
 * 4663: C++ language change: to explicitly specialize class template 'identifier' use the following syntax
williamr@2
    12
 */
williamr@2
    13
#  pragma warning ( disable : 4355 4284  4231 4511 4512 4097 4786 4800 4018 4146 4244 4514 4127 4100 4663 4103 4786 4715)
williamr@2
    14
#  pragma warning ( disable : 4245 4514 4660) // conversion from enum to unsigned int signed/unsigned mismatch
williamr@2
    15
#  if (_MSC_VER > 1200)
williamr@2
    16
// multiple copy constructors/assignment operators specified,
williamr@2
    17
// with member templates are bogus...
williamr@2
    18
#   pragma warning ( disable : 4521 4522)
williamr@2
    19
#  endif  
williamr@2
    20
# endif