forked from OSchip/llvm-project
Insert explicit casts to try appease overload resolution in the buildbots
llvm-svn: 182514
This commit is contained in:
parent
a1b5dd9a20
commit
f2ec16eb8b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue