
27 Mar
2004
27 Mar
'04
8:26 p.m.
Brock Peabody <brock.peabody@npcinternational.com> wrote:
namespace it compiles just fine. I've never seen vc 7.1 do this before. Any ideas?
following test file:
begin #include <boost/lambda/lambda.hpp> #include <boost/lambda/bind.hpp>
namespace { struct test_struct { int b; }; void f() { namespace ll = boost::lambda; ll::bind(&test_struct::b, ll::_1); } } int main() { f(); }
end
compiles successfully on my MSVC71, compiler options are: /O2 /GL /GR /GX /MD. Do you want me to try different options or different test file? Regards B.