From 38b6fbc1e7c056dbeb9d826107099b4e864f7aed Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 22 Aug 2012 18:21:29 +0000 Subject: [PATCH] Noted that VS2012 has TR1 unordered map and set; thanks to NuSkooler for testing [SVN r80143] --- include/boost/config/compiler/visualc.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index 0b11faaf..aa4584df 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -183,6 +183,16 @@ # define BOOST_NO_RTTI #endif +// +// TR1 features: +// +#if _MSC_VER >= 1700 +// # define BOOST_HAS_TR1_HASH // don't know if this is true yet. +// # define BOOST_HAS_TR1_TYPE_TRAITS // don't know if this is true yet. +# define BOOST_HAS_TR1_UNORDERED_MAP +# define BOOST_HAS_TR1_UNORDERED_SET +#endif + // // C++0x features //