mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
MozReview-Commit-ID: IWxzKfWNIHG --HG-- extra : rebase_source : d2bd65c66541e5d6e8d5cc721b117f0a3e7716e8
11 lines
No EOL
234 B
C++
11 lines
No EOL
234 B
C++
#include <vector>
|
|
|
|
void func() {
|
|
int val = 42;
|
|
std::vector<int> my_container;
|
|
for (std::vector<int>::iterator I = my_container.begin(),
|
|
E = my_container.end();
|
|
I != E;
|
|
++I) {
|
|
}
|
|
} |