From 13feb9201e3a44d5e6159c67914c76d583a12769 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 22 May 2013 20:01:35 +0000 Subject: [PATCH] Use scope-resolution operator to hopefully unbreak Windows builds. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182509 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/StaticAnalyzer/Core/BugReporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/StaticAnalyzer/Core/BugReporter.cpp b/lib/StaticAnalyzer/Core/BugReporter.cpp index 28326eee7d..b8be539513 100644 --- a/lib/StaticAnalyzer/Core/BugReporter.cpp +++ b/lib/StaticAnalyzer/Core/BugReporter.cpp @@ -2016,7 +2016,7 @@ static void removePunyEdges(PathPieces &path, if (Invalid) continue; - if (abs(startCol - endCol) <= 2) { + if (::abs(startCol - endCol) <= 2) { I = path.erase(I); erased = true; continue; -- 2.40.0