From: Aaron Ballman Date: Tue, 11 Aug 2015 21:12:46 +0000 (+0000) Subject: Add missing documentation for conversionDecl; NFC. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2e2c5741939a22884b5874eb159d9c58201bcf6;p=platform%2Fupstream%2Fllvm.git Add missing documentation for conversionDecl; NFC. llvm-svn: 244669 --- diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index 954304e..e8d9539 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/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.