12 Mar
2005
12 Mar
'05
12:05 a.m.
At 03:46 PM 3/11/2005, Eric Niebler wrote:
For hat_const_iterator, the nested "reference" typedef is non-const, and operator* is returning a const reference. The nested reference type should be:
typedef typename A::const_reference reference;
Yep. Everything works just fine now; thanks!