We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bccf78 commit 2e0e0e4Copy full SHA for 2e0e0e4
clang/include/clang/ASTMatchers/ASTMatchersInternal.h
@@ -678,9 +678,7 @@ template <typename T> Matcher(MatcherInterface<T> *) -> Matcher<T>;
678
// TODO: Remove in LLVM 23.
679
template <typename T>
680
[[deprecated(
681
- "makeMatcher() is deprecated and will be removed in LLVM 23. "
682
- "Uses of it can be replaced with direct calls to Matcher's "
683
- "constructor; with C++17's CTAD, template arguments will be deduced.")]]
+ "Use CTAD constructor instead, 'makeMatcher' will be removed in LLVM 23.")]]
684
inline Matcher<T> makeMatcher(MatcherInterface<T> *Implementation) {
685
return Matcher<T>(Implementation);
686
}
0 commit comments