ossrv_pub/configuration/inc/stdapis/stlport/config/_msvc_warnings_off.h
changeset 31 ce057bb09d0b
child 34 5fae379060a7
equal deleted inserted replaced
30:e20de85af2ee 31:ce057bb09d0b
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 # if (_MSC_VER > 1000)
       
    18 // #pragma warning ( disable : 4251 )	// ignore template classes being exported in .dll's
       
    19 /* 
       
    20  * "this used in base member initializer list"
       
    21  * arrow operator warning
       
    22  * copy constr & assignment cannot be generated
       
    23  * "forcing value to bool 'true' or 'false'
       
    24  * typedef used instaead of full type
       
    25  * 4018 : signed/unsigned mismatch, 4146 - result still unsigned 
       
    26  * 4100: unreferenced formal parameter
       
    27  * 4663: C++ language change: to explicitly specialize class template 'identifier' use the following syntax
       
    28  */
       
    29 #  pragma warning ( disable : 4355 4284  4231 4511 4512 4097 4786 4800 4018 4146 4244 4514 4127 4100 4663 4103 4786 4715)
       
    30 #  pragma warning ( disable : 4245 4514 4660) // conversion from enum to unsigned int signed/unsigned mismatch
       
    31 #  if (_MSC_VER > 1200)
       
    32 // multiple copy constructors/assignment operators specified,
       
    33 // with member templates are bogus...
       
    34 #   pragma warning ( disable : 4521 4522)
       
    35 #  endif  
       
    36 # endif