From 5ab8a5088b729a9953b8dff1b2a985dc8fb2098b Mon Sep 17 00:00:00 2001 From: mzuenni Date: Mon, 27 Jun 2022 17:19:28 +0200 Subject: updated tcr --- datastructures/stlRope.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'datastructures/stlRope.cpp') 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 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++) -- cgit v1.2.3