From: Ted Kremenek Date: Wed, 10 Oct 2007 18:52:22 +0000 (+0000) Subject: Added idea for a simple C++ checker. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dbff47f55c987f00fa53af11d92690745d3f97fb;p=clang Added idea for a simple C++ checker. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42834 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/TODO.txt b/TODO.txt index 17fba95bd9..3ef14617cd 100644 --- a/TODO.txt +++ b/TODO.txt @@ -28,4 +28,6 @@ This specific diagnostic is implemented, but others should be updated. //===---------------------------------------------------------------------===// - +C++ (checker): For iterators, warn of the use of "iterator++" instead + of "++iterator" when when the value returned by operator++(int) is + ignored.