diff options
| author | mzuenni <michi.zuendorf@gmail.com> | 2022-06-27 17:19:28 +0200 |
|---|---|---|
| committer | mzuenni <michi.zuendorf@gmail.com> | 2022-06-27 17:19:28 +0200 |
| commit | 5ab8a5088b729a9953b8dff1b2a985dc8fb2098b (patch) | |
| tree | ed40d6936c0e9eee40ba62751cbf99ecddbaddc2 /datastructures/stlRope.cpp | |
| parent | adabbad9c51cf7cd3874bfde8eac1fbcf84fec10 (diff) | |
updated tcr
Diffstat (limited to 'datastructures/stlRope.cpp')
| -rw-r--r-- | datastructures/stlRope.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datastructures/stlRope.cpp b/datastructures/stlRope.cpp index 9179a60..804cd67 100644 --- a/datastructures/stlRope.cpp +++ b/datastructures/stlRope.cpp @@ -5,4 +5,4 @@ v.push_back(num); // O(log(n)) rope<int> sub = v.substr(start, length); // O(log(n)) v.erase(start, length); // O(log(n)) v.insert(v.mutable_begin() + offset, sub); // O(log(n)) -for(auto it = v.mutable_begin(); it != v.mutable_end(); it++) {...} +for(auto it = v.mutable_begin(); it != v.mutable_end(); it++) |
