problem was: compiler couldn't figure out the return type

thus let's give a hint...
This commit is contained in:
Fischlurch 2009-12-31 02:51:58 +01:00
parent 9730ff4183
commit e7fcfaca8d

View file

@ -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";