$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2006-09-21 12:48:20
david callu wrote:
> When i compile with GCC 4.1.1, this compile fine.
> But when i compile with MSVC 2005 it report an error:
[...]
This looks like a bug in Boost.Signals. At signal_template.hpp:213, replace:
#if BOOST_WORKAROUND(BOOST_MSVC, <= 0x1700)
with
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
and see if it helps.