mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
Fix "the the" and similar typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95781 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -67,7 +67,7 @@ static void Split(std::vector<std::string> &V, const std::string &S) {
|
||||
while (true) {
|
||||
// Find the next comma
|
||||
size_t Comma = S.find(',', Pos);
|
||||
// If no comma found then the the rest of the string is used
|
||||
// If no comma found then the rest of the string is used
|
||||
if (Comma == std::string::npos) {
|
||||
// Add string to vector
|
||||
V.push_back(S.substr(Pos));
|
||||
|
Reference in New Issue
Block a user