source: NonGTP/Boost/boost/test/detail/suppress_warnings.hpp @ 857

Revision 857, 1.6 KB checked in by igarcia, 18 years ago (diff)
Line 
1//  (C) Copyright Gennadiy Rozental 2004-2005.
2//  Distributed under the Boost Software License, Version 1.0.
3//  (See accompanying file LICENSE_1_0.txt or copy at
4//  http://www.boost.org/LICENSE_1_0.txt)
5
6//  See http://www.boost.org/libs/test for the library home page.
7//
8//  File        : $RCSfile: suppress_warnings.hpp,v $
9//
10//  Version     : $Revision: 1.4 $
11//
12//  Description : suppress some warnings
13// ***************************************************************************
14
15#ifdef BOOST_MSVC
16# pragma warning(push)
17# pragma warning(disable: 4511) // copy constructor could not be generated
18# pragma warning(disable: 4512) // assignment operator could not be generated
19# pragma warning(disable: 4100) // unreferenced formal parameter
20# pragma warning(disable: 4996) // <symbol> was declared deprecated
21# pragma warning(disable: 4355) // 'this' : used in base member initializer list
22# pragma warning(disable: 4706) // assignment within conditional expression
23#endif
24
25// ***************************************************************************
26//  Revision History :
27// 
28//  $Log: suppress_warnings.hpp,v $
29//  Revision 1.4  2005/02/20 08:27:06  rogeeff
30//  This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
31//
32//  Revision 1.3  2005/02/01 06:40:07  rogeeff
33//  copyright update
34//  old log entries removed
35//  minor stilistic changes
36//  depricated tools removed
37//
38//  Revision 1.2  2005/01/31 06:00:37  rogeeff
39//  deprecated std symbols warning suppressed
40//
41// ***************************************************************************
Note: See TracBrowser for help on using the repository browser.