The message looks cryptic, but basically it says that it cannot go
from a non-const type to const. Try to cast the right hand side
operand to force both sides of the '=' to the same type, like:

ItemList::const_reverse_iterator anchor =
(ItemList::const_reverse_iterator)(_items.rbegin());

Check also if your compiler doesn't have a flag to relax a bit the
type convertion rules, Solaris' compiler seems tighter than gcc (what
doesn't mean it's better or worse, just different! ;-)

Carlos

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
List archives:  http://asgardsrealm.net/lurker/splash/index.html

Reply via email to