Menu

#5 VC++.net problems

open
nobody
None
5
2004-07-25
2004-07-25
Alok
No

For sigslot to compile on vc++.net, I had to replace

typedef std::set<_signal_base<mt_policy> *>
sender_set;
typedef sender_set::const_iterator const_iterator;

by

typedef typename std::set<_signal_base<mt_policy>
*> sender_set;
typedef typename sender_set::const_iterator
const_iterator;

Also, vc++.net in debug mode reports memory leaks
which I tracked down to connection not being deleted
(they have been commented out), but when I
uncommented them, the application crashes. I will
have to look into it more carefully. I am not sure if it is
an actual memory leak.

Discussion


Log in to post a comment.