summaryrefslogtreecommitdiff
path: root/src/third_party/boost-1.56.0/boost/fusion/mpl/empty.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/boost-1.56.0/boost/fusion/mpl/empty.hpp')
-rw-r--r--src/third_party/boost-1.56.0/boost/fusion/mpl/empty.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/third_party/boost-1.56.0/boost/fusion/mpl/empty.hpp b/src/third_party/boost-1.56.0/boost/fusion/mpl/empty.hpp
deleted file mode 100644
index b058ae95036..00000000000
--- a/src/third_party/boost-1.56.0/boost/fusion/mpl/empty.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/*=============================================================================
- Copyright (c) 2001-2011 Joel de Guzman
-
- 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)
-==============================================================================*/
-#if !defined(FUSION_EMPTY_10022005_1619)
-#define FUSION_EMPTY_10022005_1619
-
-#include <boost/fusion/support/config.hpp>
-#include <boost/mpl/empty.hpp>
-#include <boost/fusion/sequence/intrinsic/empty.hpp>
-
-namespace boost { namespace mpl
-{
- template <typename Tag>
- struct empty_impl;
-
- template <>
- struct empty_impl<fusion::fusion_sequence_tag>
- {
- template <typename Sequence>
- struct apply : fusion::result_of::empty<Sequence> {};
- };
-}}
-
-#endif