
2 May
2005
2 May
'05
3:01 p.m.
"Stefan Slapeta" <stefan@slapeta.com> wrote in message news:d556tq$qdu$1@sea.gmane.org... | Howard Hinnant wrote: | | > | > The error message is saying that | > | > boost::operator >= (ptr_container_detail::reversible_ptr_container< ... | > animal...>, ...) | > | > is being instantiated. | Actually, it's instantiated here: | | bool operator<( const reversible_ptr_container& r ) const // nothrow | { | return std::lexicographical_compare( begin(), end(), r.begin(), | r.end() ); | } I'm certainly misunderstanding something...I thought instantiation was only supposed to happen if I use the thing, in this case bool operator<(...). what am I misunderstanding? -Throrsten