forked from boostorg/range
Fix transformed test compile error on GCC 5.4
The function object 'lambda' did not provide result_type like the other function objects did. The test now compile and pass using'b2'
This commit is contained in:
@ -44,6 +44,8 @@ namespace boost
|
||||
|
||||
struct lambda
|
||||
{
|
||||
typedef int result_type;
|
||||
|
||||
lambda(const lambda_init& init) {}
|
||||
lambda(const lambda& rhs) {}
|
||||
|
||||
|
Reference in New Issue
Block a user