code tidying (insignificant changes)

[SVN r38220]
This commit is contained in:
Tobias Schwinger
2007-07-14 20:22:30 +00:00
parent 50d52fa1c4
commit 76bb8db5b7
4 changed files with 3 additions and 19 deletions

View File

@ -25,7 +25,6 @@
#include <boost/fusion/functional/adapter/detail/access.hpp> #include <boost/fusion/functional/adapter/detail/access.hpp>
#include <boost/utility/result_of.hpp> #include <boost/utility/result_of.hpp>
#include <boost/type_traits/remove_reference.hpp>
namespace boost { namespace fusion namespace boost { namespace fusion
{ {
@ -33,14 +32,12 @@ namespace boost { namespace fusion
//----- ---- --- -- - - - - //----- ---- --- -- - - - -
struct void_;
template <class Function> template <class Function>
class unfused_generic class unfused_generic
{ {
Function fnc_transformed; 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; typedef typename detail::call_param<Function>::type func_const_fwd_t;
public: public:

View File

@ -15,9 +15,6 @@
#include <boost/preprocessor/repetition/enum_binary_params.hpp> #include <boost/preprocessor/repetition/enum_binary_params.hpp>
#include <boost/preprocessor/facilities/intercept.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/utility/result_of.hpp>
#include <boost/fusion/sequence/container/vector/vector.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 template <class Function> class unfused_lvalue_args
{ {
Function fnc_transformed; 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; typedef typename detail::call_param<Function>::type func_const_fwd_t;
public: public:

View File

@ -15,9 +15,6 @@
#include <boost/preprocessor/repetition/enum_binary_params.hpp> #include <boost/preprocessor/repetition/enum_binary_params.hpp>
#include <boost/preprocessor/facilities/intercept.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/utility/result_of.hpp>
#include <boost/fusion/sequence/container/vector/vector.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 template <class Function> class unfused_rvalue_args
{ {
Function fnc_transformed; 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; typedef typename detail::call_param<Function>::type func_const_fwd_t;
public: public:

View File

@ -21,9 +21,6 @@
#include <boost/utility/result_of.hpp> #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/support/detail/access.hpp>
#include <boost/fusion/sequence/intrinsic/value_at.hpp> #include <boost/fusion/sequence/intrinsic/value_at.hpp>
#include <boost/fusion/sequence/intrinsic/size.hpp> #include <boost/fusion/sequence/intrinsic/size.hpp>