
25 Mar
2002
25 Mar
'02
4:48 p.m.
Doug, Peter, thanks for your answer! Just for the records, the following program compiles and executes ok with MSVC6SP5. (Note the use of constants.) Markus ---<%--- #include <boost/bind.hpp> #include <functional> #include <iostream> using boost::bind; void main() { std::cout << boost::bind<bool>(std::greater<int>(), _1, _2)(2, 1) << '\n'; } --->%---