comparison DEPENDENCIES/generic/include/boost/log/detail/header.hpp @ 101:c530137014c0

Update Boost headers (1.58.0)
author Chris Cannam
date Mon, 07 Sep 2015 11:12:49 +0100
parents 2665513ce2d3
children
comparison
equal deleted inserted replaced
100:793467b5e61c 101:c530137014c0
1 /* 1 /*
2 * Copyright Andrey Semashev 2007 - 2013. 2 * Copyright Andrey Semashev 2007 - 2015.
3 * Distributed under the Boost Software License, Version 1.0. 3 * Distributed under the Boost Software License, Version 1.0.
4 * (See accompanying file LICENSE_1_0.txt or copy at 4 * (See accompanying file LICENSE_1_0.txt or copy at
5 * http://www.boost.org/LICENSE_1_0.txt) 5 * http://www.boost.org/LICENSE_1_0.txt)
6 */ 6 */
7 7
36 #pragma warning(disable: 4610) 36 #pragma warning(disable: 4610)
37 // function marked as __forceinline not inlined 37 // function marked as __forceinline not inlined
38 #pragma warning(disable: 4714) 38 #pragma warning(disable: 4714)
39 // decorated name length exceeded, name was truncated 39 // decorated name length exceeded, name was truncated
40 #pragma warning(disable: 4503) 40 #pragma warning(disable: 4503)
41 // declaration of 'A' hides previous local declaration
42 #pragma warning(disable: 4456)
43 // declaration of 'A' hides global declaration
44 #pragma warning(disable: 4459)
45 // 'X': This function or variable may be unsafe. Consider using Y instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
46 #pragma warning(disable: 4996)
41 47
42 #elif defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) \ 48 #elif defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) \
43 && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 49 && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406
44 50
45 #pragma GCC diagnostic push 51 #pragma GCC diagnostic push
49 #pragma GCC diagnostic ignored "-Wunused-parameter" 55 #pragma GCC diagnostic ignored "-Wunused-parameter"
50 // missing initializer for member var 56 // missing initializer for member var
51 #pragma GCC diagnostic ignored "-Wmissing-field-initializers" 57 #pragma GCC diagnostic ignored "-Wmissing-field-initializers"
52 58
53 #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 59 #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407
54 // typedef ‘foo’ locally defined but not used 60 // typedef 'foo' locally defined but not used
55 #pragma GCC diagnostic ignored "-Wunused-local-typedefs" 61 #pragma GCC diagnostic ignored "-Wunused-local-typedefs"
56 #endif 62 #endif
57 63
58 #endif 64 #endif
59 65