From 50d52fa1c4862b5596e25ef2e74d873c41260ca2 Mon Sep 17 00:00:00 2001 From: Tobias Schwinger Date: Sat, 14 Jul 2007 20:21:54 +0000 Subject: [PATCH] code tidying [SVN r38219] --- .../adapter/detail/Attic/has_type.hpp | 21 ------------------- .../functional/adapter/detail/access.hpp | 5 ----- 2 files changed, 26 deletions(-) delete mode 100644 include/boost/fusion/functional/adapter/detail/Attic/has_type.hpp diff --git a/include/boost/fusion/functional/adapter/detail/Attic/has_type.hpp b/include/boost/fusion/functional/adapter/detail/Attic/has_type.hpp deleted file mode 100644 index 98056a26..00000000 --- a/include/boost/fusion/functional/adapter/detail/Attic/has_type.hpp +++ /dev/null @@ -1,21 +0,0 @@ -/*============================================================================= - Copyright (c) 2006-2007 Tobias Schwinger - - Use modification and distribution are 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). -==============================================================================*/ - -#if !defined(BOOST_FUSION_FUNCTIONAL_ADAPTER_DETAIL_HAS_TYPE_HPP_INCLUDED) -#define BOOST_FUSION_FUNCTIONAL_ADAPTER_DETAIL_HAS_TYPE_HPP_INCLUDED - -#include - -namespace boost { namespace fusion { namespace detail -{ - // Actually it's a sin... But MSVC's weird interpretation of ADL makes - // me do this - tosh. - using boost::mpl::aux::has_type; -}}} - -#endif diff --git a/include/boost/fusion/functional/adapter/detail/access.hpp b/include/boost/fusion/functional/adapter/detail/access.hpp index 7860515f..2e1f075b 100644 --- a/include/boost/fusion/functional/adapter/detail/access.hpp +++ b/include/boost/fusion/functional/adapter/detail/access.hpp @@ -26,11 +26,6 @@ namespace boost { namespace fusion { namespace detail template struct gref { typedef T & type; }; template struct gref { typedef T const& type; }; - // boost::result_of to Fusion PFO parameter - template struct r2fp { typedef T const type; }; - template struct r2fp { typedef T const type; }; - template struct r2fp { typedef T type; }; - // remove_const< remove_reference<_> > template struct uncr { typedef T type; }; template struct uncr { typedef T type; };