Author: kremenek
Date: Wed May 22 15:01:35 2013
New Revision: 182509

URL: http://llvm.org/viewvc/llvm-project?rev=182509&view=rev
Log:
Use scope-resolution operator to hopefully unbreak Windows builds.

Modified:
    cfe/trunk/lib/StaticAnalyzer/Core/BugReporter.cpp

Modified: cfe/trunk/lib/StaticAnalyzer/Core/BugReporter.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/BugReporter.cpp?rev=182509&r1=182508&r2=182509&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/BugReporter.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/BugReporter.cpp Wed May 22 15:01:35 2013
@@ -2016,7 +2016,7 @@ static void removePunyEdges(PathPieces &
     if (Invalid)
       continue;
 
-    if (abs(startCol - endCol) <= 2) {
+    if (::abs(startCol - endCol) <= 2) {
       I = path.erase(I);
       erased = true;
       continue;


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to