id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 245,signals,nobody,mark_rodgers,"{{{ //to suppoet intel-win32 under inter8.0, change bellow! file:singals namespace boost { namespace BOOST_SIGNALS_NAMESPACE { class trackable; namespace detail { // Represents an object that has been bound as part of a slot, and how // to notify that object of a disconnect struct bound_object { void* obj; void* data; void (*disconnect)(void*, void*); bool operator==(const bound_object& other) const { return obj == other.obj && data == other.data; } bool operator<(const bound_object& other) const { return obj < other.obj; } //Add by ty, to support intel 80 compiler, 2004/03/18 bool operator!=(const bound_object& other) const { return !(*this==other); } bool operator>(const bound_object& other) const { return !(*this < other); } }; }}}",Bugs,closed,,functional,None,,Fixed,,