summaryrefslogtreecommitdiffstats
path: root/TODO.txt
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-10-10 18:52:22 +0000
committerTed Kremenek <kremenek@apple.com>2007-10-10 18:52:22 +0000
commitdbff47f55c987f00fa53af11d92690745d3f97fb (patch)
tree02f9910d78b901396153e4e4b7486bb448444324 /TODO.txt
parentcd098477b2a02a2fd9e2edff85569c9203b4a0c0 (diff)
Added idea for a simple C++ checker.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42834 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt4
1 files changed, 3 insertions, 1 deletions
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.