diff options
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++) |
