From: Aaron Ballman Date: Tue, 11 Aug 2015 21:12:46 +0000 (+0000) Subject: Add missing documentation for conversionDecl; NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb92309f042701bb1e0a225b4537355f6f94894f;p=clang Add missing documentation for conversionDecl; NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244669 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index 954304efbc..e8d9539561 100644 --- a/docs/LibASTMatchersReference.html +++ b/docs/LibASTMatchersReference.html @@ -157,6 +157,18 @@ Example matches Foo::Foo() and Foo::Foo(int) +Matcher<Decl>conversionDeclMatcher<CXXConversionDecl>... +
Matches C++ conversion declarations.
+
+Example matches Foo::operator int()
+  struct Foo {
+    Foo();
+    operator int();
+    int DoSomething();
+  };
+
+ + Matcher<Decl>declMatcher<Decl>...
Matches declarations.