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: enable_warnings.hpp,v $
|
---|
9 | //
|
---|
10 | // Version : $Revision: 1.4 $
|
---|
11 | //
|
---|
12 | // Description : enable previosly suppressed warnings
|
---|
13 | // ***************************************************************************
|
---|
14 |
|
---|
15 | #ifdef BOOST_MSVC
|
---|
16 | # pragma warning(default: 4511) // copy constructor could not be generated
|
---|
17 | # pragma warning(default: 4512) // assignment operator could not be generated
|
---|
18 | # pragma warning(default: 4100) // unreferenced formal parameter
|
---|
19 | # pragma warning(default: 4996) // <symbol> was declared deprecated
|
---|
20 | # pragma warning(default: 4355) // 'this' : used in base member initializer list
|
---|
21 | # pragma warning(default: 4706) // assignment within conditional expression
|
---|
22 | # pragma warning(pop)
|
---|
23 | #endif
|
---|
24 |
|
---|
25 | // ***************************************************************************
|
---|
26 | // Revision History :
|
---|
27 | //
|
---|
28 | // $Log: enable_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 | // ***************************************************************************
|
---|