0_0_37864465_24479.cpp: In lambda function:
0_0_37864465_24479.cpp:83:39: error: no match for call to '(std::function<void(long long int, long long int)>) (long long int&, long long int, long long int)'
dfs(now,res-1,nb+1);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:70:0,
from 0_0_37864465_24479.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2142:11: note: candidate is:
class function<_Res(_ArgTypes...)>
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2434:5: note: _Res std::function<_Res(_ArgTypes ...)>::operator()(_ArgTypes ...) const [with _Res = void; _ArgTypes = {long long int, long long int}]
function<_Res(_ArgTypes...)>::
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2434:5: note: candidate expects 2 arguments, 3 provided
0_0_37864465_24479.cpp:86:37: error: no match for call to '(std::function<void(long long int, long long int)>) (long long int&, long long int, long long int&)'
dfs(now,res-1,nb);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:70:0,
from 0_0_37864465_24479.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2142:11: note: candidate is:
class function<_Res(_ArgTypes...)>
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2434:5: note: _Res std::function<_Res(_ArgTypes ...)>::operator()(_ArgTypes ...) const [with _Res = void; _ArgTypes = {long long int, long long int}]
function<_Res(_ArgTypes...)>::
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2434:5: note: candidate expects 2 arguments, 3 provided
0_0_37864465_24479.cpp: In function 'int main()':
0_0_37864465_24479.cpp:88:9: error: conversion from 'main()::<lambda(long long int, long long int, long long int)>' to non-scalar type 'std::function<void(long long int, long long int)>' requested
};
^
0_0_37864465_24479.cpp:89:25: error: no match for call to '(std::function<void(long long int, long long int)>) (int, std::vector<long long int>::size_type, int)'
dfs(1,p.size(),0);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:70:0,
from 0_0_37864465_24479.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2142:11: note: candidate is:
class function<_Res(_ArgTypes...)>
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2434:5: note: _Res std::function<_Res(_ArgTypes ...)>::operator()(_ArgTypes ...) const [with _Res = void; _ArgTypes = {long long int, long long int}]
function<_Res(_ArgTypes...)>::
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:2434:5: note: candidate expects 2 arguments, 3 provided
|