Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 345 Bytes

stlBoundaries.md

File metadata and controls

11 lines (6 loc) · 345 Bytes

Pattern: Dangerous iterator comparison

Issue: -

Description

Iterator compared with operator <. This is dangerous since the order of items in the container is not guaranteed. One should use != instead to compare iterators.

Further Reading