$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: gast128 (gast128_at_[hidden])
Date: 2007-06-04 10:19:23
Dear all,
We want to (DLL) export a boost graph. Probably on (DLL) exporting, the
compiler tries to generate code for every member function. However on VC++7.1
it gives then a problem with operator[]. This can be easily verified with the
following case:
void Foo()
{
boost::adjacency_list<> graph;
graph[0];
}
We use here Boost 1.33.0. Anyone an idea?
Wkr,
me