r207854 - Fix bad comment from r207573.
Hans Wennborg
hans at hanshq.net
Fri May 2 11:12:30 PDT 2014
Author: hans
Date: Fri May 2 13:12:30 2014
New Revision: 207854
URL: http://llvm.org/viewvc/llvm-project?rev=207854&view=rev
Log:
Fix bad comment from r207573.
Modified:
cfe/trunk/lib/Analysis/ScanfFormatString.cpp
Modified: cfe/trunk/lib/Analysis/ScanfFormatString.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Analysis/ScanfFormatString.cpp?rev=207854&r1=207853&r2=207854&view=diff
==============================================================================
--- cfe/trunk/lib/Analysis/ScanfFormatString.cpp (original)
+++ cfe/trunk/lib/Analysis/ScanfFormatString.cpp Fri May 2 13:12:30 2014
@@ -50,7 +50,7 @@ static bool ParseScanList(FormatStringHa
}
}
- // Special case: "]^" are the first characters.
+ // Special case: "^]" are the first characters.
if (I + 1 != E && I[0] == '^' && I[1] == ']') {
I += 2;
if (I == E) {
More information about the cfe-commits
mailing list