[cfe-commits] r95906 - /cfe/trunk/lib/Sema/SemaChecking.cpp
Ted Kremenek
kremenek at apple.com
Thu Feb 11 11:37:25 PST 2010
Author: kremenek
Date: Thu Feb 11 13:37:25 2010
New Revision: 95906
URL: http://llvm.org/viewvc/llvm-project?rev=95906&view=rev
Log:
Uncomment lines I never meant to have left commented in a commit.
Modified:
cfe/trunk/lib/Sema/SemaChecking.cpp
Modified: cfe/trunk/lib/Sema/SemaChecking.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaChecking.cpp?rev=95906&r1=95905&r2=95906&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaChecking.cpp (original)
+++ cfe/trunk/lib/Sema/SemaChecking.cpp Thu Feb 11 13:37:25 2010
@@ -1325,9 +1325,9 @@
S.Diag(getLocationOfByte(CS.getStart()),
diag::warn_printf_conversion_argument_type_mismatch)
- << *T << Ex->getType();
-// << getFormatSpecifierRange(startSpecifier, specifierLen)
-// << Ex->getSourceRange();
+ << *T << Ex->getType()
+ << getFormatSpecifierRange(startSpecifier, specifierLen)
+ << Ex->getSourceRange();
}
return true;
}
More information about the cfe-commits
mailing list