[clang-tools-extra] [libc] clang-tidy: readability-redundant-smartptr-get does not remove -> (#97964) (PR #98757)
Nathan James via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 18 14:58:12 PDT 2024
================
@@ -235,3 +276,13 @@ void Negative() {
if (MACRO(x) == nullptr)
;
}
+
+void test_redundant_get() {
+ std::vector<std::shared_ptr<int>> v;
+ auto f = [](int) {};
+ for (auto i = v.begin(); i != v.end(); ++i) {
+ f(*i->get());
----------------
njames93 wrote:
I think he is saying have a shared_ptr to a class type with a member that can be accessed
https://github.com/llvm/llvm-project/pull/98757
More information about the cfe-commits
mailing list