Displaying 1 result from an estimated 1 matches for "r211273".
Did you mean:
5211273
2014 Jul 15
2
[LLVMdev] Bug in MapVector::erase ?
...gt;
>
> *From:* Yaron Keren [mailto:yaron.keren at gmail.com]
> *Sent:* 15 July 2014 15:18
> *To:* cfe-dev at cs.uiuc.edu Developers; llvmdev at cs.uiuc.edu; Oliver Stannard
> *Subject:* Re: Bug in MapVector::erase ?
>
>
>
> +llvmdev +Oliver. MapVector::erase was added in r211273.
>
>
>
> To avoid duplications, MapVector stores Values inside the vector only,
> while the map caches key->indices to the vector.
>
>
> When a value is erased from the MapVector, it is removed from the vector,
> invalidating the cached vector indices stored in the map...