summaryrefslogtreecommitdiff
path: root/boost/multi_index/detail/node_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/multi_index/detail/node_type.hpp')
-rw-r--r--boost/multi_index/detail/node_type.hpp17
1 files changed, 2 insertions, 15 deletions
diff --git a/boost/multi_index/detail/node_type.hpp b/boost/multi_index/detail/node_type.hpp
index 0e87261aac..7fe85cf968 100644
--- a/boost/multi_index/detail/node_type.hpp
+++ b/boost/multi_index/detail/node_type.hpp
@@ -1,4 +1,4 @@
-/* Copyright 2003-2008 Joaquin M Lopez Munoz.
+/* Copyright 2003-2013 Joaquin M Lopez Munoz.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
@@ -9,7 +9,7 @@
#ifndef BOOST_MULTI_INDEX_DETAIL_NODE_TYPE_HPP
#define BOOST_MULTI_INDEX_DETAIL_NODE_TYPE_HPP
-#if defined(_MSC_VER)&&(_MSC_VER>=1200)
+#if defined(_MSC_VER)
#pragma once
#endif
@@ -22,7 +22,6 @@
#include <boost/multi_index/detail/header_holder.hpp>
#include <boost/multi_index/detail/index_node_base.hpp>
#include <boost/multi_index/detail/is_index_list.hpp>
-#include <boost/multi_index/detail/msvc_index_specifier.hpp>
#include <boost/static_assert.hpp>
namespace boost{
@@ -35,17 +34,6 @@ namespace detail{
* index list.
*/
-#if BOOST_WORKAROUND(BOOST_MSVC,<1310)
-struct index_node_applier
-{
- template<typename IndexSpecifierIterator,typename Super>
- struct apply:
- msvc_index_specifier< mpl::deref<IndexSpecifierIterator>::type >::
- template result_node_class<Super>
- {
- };
-};
-#else
struct index_node_applier
{
template<typename IndexSpecifierIterator,typename Super>
@@ -56,7 +44,6 @@ struct index_node_applier
BOOST_NESTED_TEMPLATE node_class<Super>::type type;
};
};
-#endif
template<typename Value,typename IndexSpecifierList,typename Allocator>
struct multi_index_node_type