2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-18 02:12:09 +00:00

function/lazy_list.hpp remove reference in one location.

This commit is contained in:
John Fletcher
2015-03-02 10:25:22 +00:00
parent c606f2ef71
commit db1c2b1133

View File

@@ -864,14 +864,6 @@ public:
{
return f;
}
/*
template <class F>
typename boost::phoenix::function<F> operator()
(boost::phoenix::function<F> const& f) const
{
return f;
}
*/
};
@@ -1196,8 +1188,9 @@ bool operator<( a_unique_type_for_nil, const list<T>& b ) {
};
template <class T, class L, bool b> struct ConsHelp1 {
typedef typename boost::remove_reference<T>::type TT;
typedef typename L::force_result_type type;
static type go( const T& x, const L& l ) {
static type go( const TT& x, const L& l ) {
return type(x,l);
}
};