-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Iterator::Next() has this line: if (it_ != end(*self_)) return &*it_++; The reference returned by *it_ doesn't have to be valid after the iterator is incremented; input iterators might create these values on the fly (and don't store them). TGP: https://test.corp.google.com/ui#id=OCL:387627910:BASE:391752438:1629382590029:3d364c60 See also: http://g/c-users/xvDy7spjpeM PiperOrigin-RevId: 392401203
- Loading branch information
CLIF Team
authored and
Ralf W. Grosse-Kunstleve
committed
Aug 29, 2021
1 parent
253ad15
commit fbc9fcf
Showing
2 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters