summaryrefslogtreecommitdiff
path: root/boost/phoenix/stl/algorithm/detail/std_unordered_set_or_map_fwd.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/phoenix/stl/algorithm/detail/std_unordered_set_or_map_fwd.hpp')
-rw-r--r--boost/phoenix/stl/algorithm/detail/std_unordered_set_or_map_fwd.hpp74
1 files changed, 0 insertions, 74 deletions
diff --git a/boost/phoenix/stl/algorithm/detail/std_unordered_set_or_map_fwd.hpp b/boost/phoenix/stl/algorithm/detail/std_unordered_set_or_map_fwd.hpp
deleted file mode 100644
index e650328d15..0000000000
--- a/boost/phoenix/stl/algorithm/detail/std_unordered_set_or_map_fwd.hpp
+++ /dev/null
@@ -1,74 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Copyright 2005 Daniel Wallin.
-// Copyright 2005 Joel de Guzman.
-// Copyright 2015 John Fletcher
-//
-// Use, modification and distribution is subject to 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)
-//
-// Modeled after range_ex, Copyright 2004 Eric Niebler
-///////////////////////////////////////////////////////////////////////////////
-//
-// std_unordered_set_or_map_fwd.hpp
-//
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef BOOST_PHOENIX_STD_UNORDERED_SET_OR_MAP_FWD
-#define BOOST_PHOENIX_STD_UNORDERED_SET_OR_MAP_FWD
-
-#include <boost/phoenix/config.hpp>
-
-#ifdef BOOST_PHOENIX_HAS_UNORDERED_SET_AND_MAP
-#if defined(BOOST_PHOENIX_USING_LIBCPP) \
- || (defined(BOOST_DINKUMWARE_STDLIB) && (BOOST_DINKUMWARE_STDLIB < 540))
-// Advance declaration not working for libc++ and MSVC 10
-#include BOOST_PHOENIX_UNORDERED_SET_HEADER
-#include BOOST_PHOENIX_UNORDERED_MAP_HEADER
-#else
-
-
-
-namespace std {
-
-
- template<
- class Kty
- , class Hash
- , class Cmp
- , class Alloc
- >
- class unordered_set;
-
- template<
- class Kty
- , class Hash
- , class Cmp
- , class Alloc
- >
- class unordered_multiset;
-
- template<
- class Kty
- , class Ty
- , class Hash
- , class Cmp
- , class Alloc
- >
- class unordered_map;
-
- template<
- class Kty
- , class Ty
- , class Hash
- , class Cmp
- , class Alloc
- >
- class unordered_multimap;
-}
-#endif
-
-
-#endif
-
-#endif