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:
Jean-Philippe DUFRAIGNE
2017-09-24 14:13:42 +01:00
parent 8b98b696ff
commit 4a729678fd

View File

@ -44,6 +44,8 @@ namespace boost
struct lambda
{
typedef int result_type;
lambda(const lambda_init& init) {}
lambda(const lambda& rhs) {}