Insert explicit casts to try appease overload resolution in the buildbots

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182514 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Pete Cooper 2013-05-22 21:02:38 +00:00
Родитель 13feb9201e
Коммит 34bd3331b5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2016,7 +2016,7 @@ static void removePunyEdges(PathPieces &path,
if (Invalid)
continue;
if (::abs(startCol - endCol) <= 2) {
if (abs((int)startCol - (int)endCol) <= 2) {
I = path.erase(I);
erased = true;
continue;