On 02/08/2012 07:59 AM, Noel Grandin wrote: > This I don't understand - maCharInfoMap is not declared const, so how > can I make it mutable? In a const member function, all data members of this are implicitly treated as const, unless they are explicitly marked mutable. Stephan