5chmidti wrote:

> but there appears to be no way to introspect the UnresolvedLookupExpr to 
> ensure I'm matching calls to `std::move`
Try searching for `unresolvedLookupExpr` & `UnresolvedLookupExpr` in the 
clang-tidy directory. There is a high probability that another check has done 
something related/similar.

https://github.com/llvm/llvm-project/blob/2b7191c8993b5608ddb8b89c049717b497265796/clang-tools-extra/clang-tidy/cppcoreguidelines/RvalueReferenceParamNotMovedCheck.cpp#L46-L47

And there is `OverloadExpr::decls`, which `UnresolvedLookupExpr` inherits 
(https://clang.llvm.org/doxygen/classclang_1_1UnresolvedLookupExpr.html).

https://github.com/llvm/llvm-project/pull/67467
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to