$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Ivan Rachev (ivanr_at_[hidden])
Date: 2005-07-14 00:03:43
Robert Ramey wrote:
> How did the compile fail?
>
> Robert Ramey
>
>
>>#include <boost/serialization/tracking.hpp>
>>BOOST_CLASS_TRACKING(char, boost::serialization::track_selectivly)
>>
>>I guess I need to change the default "implementation_level" for char.
>>What other things do I need to change so as to make a fundamental type
>>trackable?
>>
>>
>>Thanks,
>>Ivan
cpp files contains this:
#include <boost/serialization/tracking.hpp>
BOOST_CLASS_TRACKING(char, boost::serialization::track_selectivly)
When compiling I get this:
error C2027: use of undefined type 'boost::STATIC_ASSERTION_FAILURE<x>'
because I believe BOOST_STATIC_ASSERT inside BOOST_CLASS_TRACKING fails.
I use boost 1.32
Ivan