mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-01 04:20:39 +02:00
Changed operator < to != (#4004)
This commit is contained in:
@@ -915,7 +915,7 @@ ST.erase(20); // Will erase element with value 20
|
||||
// Set ST: 10 30
|
||||
// To iterate through Set we use iterators
|
||||
set<int>::iterator it;
|
||||
for(it=ST.begin();it<ST.end();it++) {
|
||||
for(it=ST.begin();it!=ST.end();it++) {
|
||||
cout << *it << endl;
|
||||
}
|
||||
// Output:
|
||||
|
Reference in New Issue
Block a user