[PATCH] D55534: [AST] Store "UsesADL" information in CallExpr.

Richard Smith - zygoloid via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Dec 12 12:18:14 PST 2018


rsmith accepted this revision.
rsmith added inline comments.
This revision is now accepted and ready to land.


================
Comment at: include/clang/ASTMatchers/ASTMatchers.h:1276
+///     y(42); // Doesn't match
+///   }
+/// \endcode
----------------
I think it would be useful to add to the example:
```
using NS::y;
y(x); // Found by both unqualified lookup and ADL, doesn't match
```


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D55534/new/

https://reviews.llvm.org/D55534





More information about the cfe-commits mailing list