tags:

views:

20

answers:

1

Hi everyone, Whenever I tried to run a simple main() with

BOOST_CHECK( 1 == 2 );

The compiler broke at runtime, and it linked me to malloc(...) call which I think it relates to memory issue? How could this be possible since I have nothing call new or delete? Any idea?

Thanks,

A: 

Please tell us your boost version and post the complete minimal source file.

Gabriel Schreiber
I'm using Boost 1.43.0 with Visual Studio 2010. By the way, is there any forum for Boost Library? The library is really powerful but I found that there are very few discussion as well as community for it.Thanks,
Chan