Simplifiy code using return value of erase().

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182506 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2013-05-22 19:25:03 +00:00
Родитель 1d85a9e8fb
Коммит a705980a7c
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -2017,10 +2017,8 @@ static void removePunyEdges(PathPieces &path,
continue;
if (abs(startCol - endCol) <= 2) {
PathPieces::iterator PieceToErase = I;
++I;
I = path.erase(I);
erased = true;
path.erase(PieceToErase);
continue;
}
}