$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jody Hagins (jody-boost-011304_at_[hidden])
Date: 2005-01-13 12:16:04
Consider this simple example...
#include <boost/test/test_tools.hpp>
struct Foo
{
static unsigned int const x = 10;
};
int test_main( int, char* [] ) // note the name!
{
BOOST_CHECK_EQUAL(10U, Foo::x);
return 0;
}
At least under gcc, I get a linker error, unable to find Foo::x, while
the following code works fine...
int test_main( int, char* [] ) // note the name!
{
BOOST_CHECK(10U == Foo::x);
return 0;
}