5 Jun
2007
5 Jun
'07
7:45 a.m.
Aaron Windsor
On 6/4/07, gast128
wrote: 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
it gives then a problem with operator[]. This can be easily verified with
VC++7.1 the
following case:
void Foo() { boost::adjacency_list<> graph; graph[0]; }
We use here Boost 1.33.0. Anyone an idea?
Wkr, me
Hi,
What are you expecting the expression "graph[0]" to do/return in the code above?
Regards, Aaron
Nothing. It won't compile, complaining about return type. Same error if you try to export an adjacency_list. Wkr, me