summaryrefslogtreecommitdiff
path: root/clang-tools-extra/include-cleaner
diff options
context:
space:
mode:
authorHaojian Wu <hokein.wu@gmail.com>2023-01-13 16:25:44 +0100
committerHaojian Wu <hokein.wu@gmail.com>2023-01-13 16:26:27 +0100
commite435f56815435422a63f5e9e9aad6959428e96c2 (patch)
treec09cc8985b71dc1ca0cd5d0551d5e9d39c0438f3 /clang-tools-extra/include-cleaner
parentd86f1a982e8423a2ae5a424906f6960576c35606 (diff)
downloadllvm-e435f56815435422a63f5e9e9aad6959428e96c2.tar.gz
[include-cleaner] Remove a stale FIXME.
This FIXME was addressed in 0e545816a9e582af29ea4b9441fea8ed376cf52a.
Diffstat (limited to 'clang-tools-extra/include-cleaner')
-rw-r--r--clang-tools-extra/include-cleaner/lib/WalkAST.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/clang-tools-extra/include-cleaner/lib/WalkAST.cpp b/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
index 6a5594e3d6d3..f317b0dc2d07 100644
--- a/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
+++ b/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
@@ -91,8 +91,6 @@ public:
// usage of the base type of the MemberExpr, so that e.g. code
// `returnFoo().bar` can keep #include "foo.h" (rather than inserting
// "bar.h" for the underlying base type `Bar`).
- //
- // FIXME: support dependent types, e.g., "std::vector<T>().size()".
QualType Type = E->getBase()->IgnoreImpCasts()->getType();
report(E->getMemberLoc(), getMemberProvider(Type), RefType::Implicit);
return true;