Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the constness issues around autovector::iterator_impl's dereferen…
…ce operators Summary: As described in detail in issue facebook#6048, iterators' dereference operators (`*`, `->`, and `[]`) should return `pointer`s/`reference`s (as opposed to `const_pointer`s/`const_reference`s) even if the iterator itself is const to be in sync with the standard's iterator concept. Test Plan: make check
- Loading branch information