From: Ted Kremenek Date: Thu, 11 Feb 2010 19:37:25 +0000 (+0000) Subject: Uncomment lines I never meant to have left commented in a commit. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1497bffe829d082dd1d1927dc80ea08dcf1fcb49;p=clang 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 --- 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; }