2
0
mirror of https://github.com/boostorg/tr1.git synced 2026-01-19 04:42:14 +00:00

Fix msvc-11 and 12 failures.

Mark library as deprecated.
This commit is contained in:
jzmaddock
2014-02-20 13:17:50 +00:00
parent fdc149c60f
commit 3f92af9d95
2 changed files with 5 additions and 1 deletions

View File

@@ -12,6 +12,10 @@
]
[section:intro Introduction]
[important This library is deprecated in favor of native C++11 standard library features, as a result
it receives little or no maintenance.]
The TR1 library provides an implementation of the C++ Technical Report on Standard Library Extensions.
This library does not itself implement the TR1 components, rather it's a thin wrapper that will
include your standard library's TR1 implementation (if it has one), otherwise it will include the Boost

View File

@@ -138,7 +138,7 @@
// this here, in addition the feature pack for VC9
// provides a more or less full TR1 implementation:
//
# if defined(_HAS_TR1) && (_HAS_TR1 + 0)
# if (defined(_HAS_TR1) && (_HAS_TR1 + 0)) || (_CPPLIB_VER >= 540)
# define BOOST_HAS_TR1_ARRAY
# define BOOST_HAS_TR1_REFERENCE_WRAPPER
# define BOOST_HAS_TR1_RESULT_OF