$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: KLINIK Markus SDI2-G (AREVA NP GmbH) (Markus.Klinik_at_[hidden])
Date: 2007-03-15 08:48:16
Hello,
including the header files
"boost/date_time/local_time/local_time.hpp"
and
"boost/filesystem/operations.hpp"
in this order results in the following compile error:
'boost::equivalent' : use of class template requires template argument
list
Swapping lines 1 and 2 of the following sample code works.
I'm using MSVC 7.0, M$ Windows XP and boost-1.33.1
<code>
#include <boost/date_time/local_time/local_time.hpp> // 1 //
#include <boost/filesystem/operations.hpp> // 2 //
int main(void)
{
return 0;
}
</code>
Best Regards
Markus