diff --git a/src/working_files.cc b/src/working_files.cc index ba930c29..6ba8a963 100644 --- a/src/working_files.cc +++ b/src/working_files.cc @@ -24,7 +24,6 @@ limitations under the License. #include #include #include -#include namespace chrono = std::chrono; using namespace clang; @@ -55,13 +54,17 @@ Position GetPositionForOffset(const std::string &content, int offset) { return {line, col}; } -std::vector ToLines(const std::string &content) { - std::vector result; - std::istringstream lines(content); - std::string line; - while (getline(lines, line)) - result.push_back(line); - return result; +std::vector ToLines(const std::string &c) { + std::vector ret; + int last = 0, e = c.size(); + for (int i = 0; i < e; i++) + if (c[i] == '\n') { + ret.emplace_back(&c[last], i - last - (i && c[i - 1] == '\r')); + last = i + 1; + } + if (last < e) + ret.emplace_back(&c[last], e - last); + return ret; } // Computes the edit distance of strings [a,a+la) and [b,b+lb) with Eugene W.