aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2010-02-11 19:37:25 +0000
committerTed Kremenek <kremenek@apple.com>2010-02-11 19:37:25 +0000
commit1497bffe829d082dd1d1927dc80ea08dcf1fcb49 (patch)
tree82b2d21b2a1ba960abc263812c520b4817f553a3 /lib/Sema/SemaChecking.cpp
parent4800d95d28b20eca5d57c108ae3d2e6e312c1182 (diff)
Uncomment lines I never meant to have left commented in a commit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95906 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaChecking.cpp')
-rw-r--r--lib/Sema/SemaChecking.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp
index 3a77552f48..64cbde050b 100644
--- a/lib/Sema/SemaChecking.cpp
+++ b/lib/Sema/SemaChecking.cpp
@@ -1325,9 +1325,9 @@ CheckPrintfHandler::HandleFormatSpecifier(const analyze_printf::FormatSpecifier
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;
}