From 68872c9e26830fe17240f53a8a8bb80814d88262 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 5 Jan 2010 00:37:42 +0000 Subject: [PATCH] Remove stale comment. We already do format string checking for functions with the format attribute. llvm-svn: 92553 --- clang/lib/Sema/SemaChecking.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index 7d2e38cc1521..fc8e18bc09e2 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/lib/Sema/SemaChecking.cpp @@ -966,9 +966,6 @@ Sema::CheckNonNullArguments(const NonNullAttr *NonNull, /// /// (8) Check that the format string is a wide literal. /// -/// (9) Also check the arguments of functions with the __format__ attribute. -/// (TODO). -/// /// All of these checks can be done by parsing the format string. /// /// For now, we ONLY do (1), (3), (5), (6), (7), and (8).