July 07, 2006
Walter attached sample shows the problem.
Compiling goes fine but linking causes problems.

Basically boils down to this:

-------------free.hpp-----------------------
namespace test
{
inline void  some_free_func ()
{
   static std::string ( "Default String" );
   ^^^^^^<-- link problem!
   ...
   ...
}
)
-------------free.hpp-----------------------


Arjan