summaryrefslogtreecommitdiff
path: root/boost/phoenix/scope/detail/make_locals.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/phoenix/scope/detail/make_locals.hpp')
-rw-r--r--boost/phoenix/scope/detail/make_locals.hpp108
1 files changed, 0 insertions, 108 deletions
diff --git a/boost/phoenix/scope/detail/make_locals.hpp b/boost/phoenix/scope/detail/make_locals.hpp
deleted file mode 100644
index 5b311a667a..0000000000
--- a/boost/phoenix/scope/detail/make_locals.hpp
+++ /dev/null
@@ -1,108 +0,0 @@
-
-#if !defined(BOOST_PHOENIX_DONT_USE_PREPROCESSED_FILES)
-#ifndef BOOST_PHOENIX_SCOPE_DETAIL_MAKE_LOCALS_HPP
-#define BOOST_PHOENIX_SCOPE_DETAIL_MAKE_LOCALS_HPP
-
-#include <boost/phoenix/support/iterate.hpp>
-
-#include <boost/phoenix/scope/detail/preprocessed/make_locals.hpp>
-
-#endif
-#else
-
-#if !BOOST_PHOENIX_IS_ITERATING
-
-#ifndef BOOST_PHOENIX_SCOPE_DETAIL_MAKE_LOCALS_HPP
-#define BOOST_PHOENIX_SCOPE_DETAIL_MAKE_LOCALS_HPP
-
-#include <boost/phoenix/support/iterate.hpp>
-
-#if defined(__WAVE__) && defined(BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
-#pragma wave option(preserve: 2, line: 0, output: "preprocessed/make_locals_" BOOST_PHOENIX_LIMIT_STR ".hpp")
-#endif
-
-/*==============================================================================
- Copyright (c) 2005-2010 Joel de Guzman
- Copyright (c) 2010 Thomas Heller
-
- 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(__WAVE__) && defined(BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
-#pragma wave option(preserve: 1)
-#endif
-
-#define BOOST_PHOENIX_TYPEDEF_LOCAL_TYPES(Z, N, D) \
- typedef \
- typename proto::result_of::value< \
- typename proto::result_of::child_c< \
- BOOST_PP_CAT(A, N) \
- , 0 \
- >::type \
- >::type \
- BOOST_PP_CAT(tag_type, N); \
- \
- typedef \
- typename proto::result_of::child_c< \
- BOOST_PP_CAT(A, N) \
- , 1 \
- >::type \
- BOOST_PP_CAT(var_type, N); \
-/**/
-
-#define BOOST_PHOENIX_TYPEDEF_LOCAL_PAIR_TYPES(Z, N, D) \
- BOOST_PP_COMMA_IF(N) \
- fusion::pair<BOOST_PP_CAT(tag_type, N), BOOST_PP_CAT(var_type, N)> \
-/**/
-
-#define BOOST_PHOENIX_CHILD_OF(Z, N, D) \
- BOOST_PP_COMMA_IF(N) proto::child_c<1>(BOOST_PP_CAT(a, N)) \
-/**/
-
-
-#define BOOST_PHOENIX_ITERATION_PARAMS \
- (3, (1, BOOST_PHOENIX_LOCAL_LIMIT, \
- <boost/phoenix/scope/detail/make_locals.hpp>))
-#include BOOST_PHOENIX_ITERATE()
-
-#if defined(__WAVE__) && defined(BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
-#pragma wave option(output: null)
-#endif
-
-#endif
-
-#else
-
- template <BOOST_PHOENIX_typename_A>
- struct make_locals<BOOST_PHOENIX_A>
- {
- BOOST_PP_REPEAT(
- BOOST_PHOENIX_ITERATION
- , BOOST_PHOENIX_TYPEDEF_LOCAL_TYPES
- , _
- )
- typedef fusion::map<
- BOOST_PP_REPEAT(
- BOOST_PHOENIX_ITERATION
- , BOOST_PHOENIX_TYPEDEF_LOCAL_PAIR_TYPES
- , _
- )
- > type;
-
- static type const make(BOOST_PHOENIX_A_a)
- {
- return
- type(
- BOOST_PP_REPEAT(
- BOOST_PHOENIX_ITERATION
- , BOOST_PHOENIX_CHILD_OF
- , _
- )
- );
- }
- };
-
-#endif
-
-#endif // BOOST_PHOENIX_DONT_USE_PREPROCESSED_FILES