problem was: compiler couldn't figure out the return type
thus let's give a hint...
This commit is contained in:
parent
9730ff4183
commit
e7fcfaca8d
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ main (int, char**)
|
|||
numberz.push_back(count--);
|
||||
|
||||
// eat_all (numberz, plainFunc, 10, _1 );
|
||||
eat_all (numberz, std::tr1::bind (plainFunc, 10, _1));
|
||||
eat_all (numberz, std::tr1::bind<bool> (plainFunc, 10, _1));
|
||||
|
||||
cout << "\n.gulp.\n";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue