summaryrefslogtreecommitdiff
path: root/boost/spirit/home/phoenix/statement/sequence.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/phoenix/statement/sequence.hpp')
-rw-r--r--boost/spirit/home/phoenix/statement/sequence.hpp55
1 files changed, 0 insertions, 55 deletions
diff --git a/boost/spirit/home/phoenix/statement/sequence.hpp b/boost/spirit/home/phoenix/statement/sequence.hpp
deleted file mode 100644
index 8a5f0c3e72..0000000000
--- a/boost/spirit/home/phoenix/statement/sequence.hpp
+++ /dev/null
@@ -1,55 +0,0 @@
-/*=============================================================================
- Copyright (c) 2001-2007 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)
-==============================================================================*/
-#ifndef PHOENIX_STATEMENT_SEQUENCE_HPP
-#define PHOENIX_STATEMENT_SEQUENCE_HPP
-
-#include <boost/spirit/home/phoenix/core/composite.hpp>
-#include <boost/spirit/home/phoenix/core/compose.hpp>
-
-namespace boost { namespace phoenix
-{
- struct sequence_eval
- {
- template <typename Env, typename A0, typename A1>
- struct result
- {
- typedef void type;
- };
-
- template <typename RT, typename Env, typename A0, typename A1>
- static void
- eval(Env const& env, A0& a0, A1& a1)
- {
- a0.eval(env);
- a1.eval(env);
- }
- };
-
- namespace detail
- {
- template <typename BaseT0, typename BaseT1>
- struct comma_result
- {
- typedef actor<
- typename as_composite<
- sequence_eval
- , actor<BaseT0>
- , actor<BaseT1>
- >::type
- > type;
- };
- }
-
- template <typename BaseT0, typename BaseT1>
- inline typename detail::comma_result<BaseT0, BaseT1>::type
- operator,(actor<BaseT0> const& a0, actor<BaseT1> const& a1)
- {
- return compose<sequence_eval>(a0, a1);
- }
-}}
-
-#endif