mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-16 13:52:24 +02:00
code tidying (insignificant changes)
[SVN r38220]
This commit is contained in:
@ -25,7 +25,6 @@
|
||||
#include <boost/fusion/functional/adapter/detail/access.hpp>
|
||||
|
||||
#include <boost/utility/result_of.hpp>
|
||||
#include <boost/type_traits/remove_reference.hpp>
|
||||
|
||||
namespace boost { namespace fusion
|
||||
{
|
||||
@ -33,14 +32,12 @@ namespace boost { namespace fusion
|
||||
|
||||
//----- ---- --- -- - - - -
|
||||
|
||||
struct void_;
|
||||
|
||||
template <class Function>
|
||||
class unfused_generic
|
||||
{
|
||||
Function fnc_transformed;
|
||||
|
||||
typedef typename remove_const<typename boost::remove_reference<Function>::type>::type function;
|
||||
typedef typename detail::uncr<Function>::type function;
|
||||
typedef typename detail::call_param<Function>::type func_const_fwd_t;
|
||||
|
||||
public:
|
||||
|
@ -15,9 +15,6 @@
|
||||
#include <boost/preprocessor/repetition/enum_binary_params.hpp>
|
||||
#include <boost/preprocessor/facilities/intercept.hpp>
|
||||
|
||||
#include <boost/type_traits/remove_reference.hpp>
|
||||
#include <boost/type_traits/remove_const.hpp>
|
||||
|
||||
#include <boost/utility/result_of.hpp>
|
||||
|
||||
#include <boost/fusion/sequence/container/vector/vector.hpp>
|
||||
@ -31,13 +28,11 @@ namespace boost { namespace fusion
|
||||
|
||||
//----- ---- --- -- - - - -
|
||||
|
||||
struct void_;
|
||||
|
||||
template <class Function> class unfused_lvalue_args
|
||||
{
|
||||
Function fnc_transformed;
|
||||
|
||||
typedef typename remove_const<typename boost::remove_reference<Function>::type>::type function;
|
||||
typedef typename detail::uncr<Function>::type function;
|
||||
typedef typename detail::call_param<Function>::type func_const_fwd_t;
|
||||
|
||||
public:
|
||||
|
@ -15,9 +15,6 @@
|
||||
#include <boost/preprocessor/repetition/enum_binary_params.hpp>
|
||||
#include <boost/preprocessor/facilities/intercept.hpp>
|
||||
|
||||
#include <boost/type_traits/remove_reference.hpp>
|
||||
#include <boost/type_traits/remove_const.hpp>
|
||||
|
||||
#include <boost/utility/result_of.hpp>
|
||||
|
||||
#include <boost/fusion/sequence/container/vector/vector.hpp>
|
||||
@ -31,13 +28,11 @@ namespace boost { namespace fusion
|
||||
|
||||
//----- ---- --- -- - - - -
|
||||
|
||||
struct void_;
|
||||
|
||||
template <class Function> class unfused_rvalue_args
|
||||
{
|
||||
Function fnc_transformed;
|
||||
|
||||
typedef typename remove_const<typename boost::remove_reference<Function>::type>::type function;
|
||||
typedef typename detail::uncr<Function>::type function;
|
||||
typedef typename detail::call_param<Function>::type func_const_fwd_t;
|
||||
|
||||
public:
|
||||
|
@ -21,9 +21,6 @@
|
||||
|
||||
#include <boost/utility/result_of.hpp>
|
||||
|
||||
#include <boost/type_traits/remove_reference.hpp>
|
||||
#include <boost/type_traits/remove_const.hpp>
|
||||
|
||||
#include <boost/fusion/support/detail/access.hpp>
|
||||
#include <boost/fusion/sequence/intrinsic/value_at.hpp>
|
||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||
|
Reference in New Issue
Block a user