r244669 - Add missing documentation for conversionDecl; NFC.

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 11 14:12:46 PDT 2015


Author: aaronballman
Date: Tue Aug 11 16:12:46 2015
New Revision: 244669

URL: http://llvm.org/viewvc/llvm-project?rev=244669&view=rev
Log:
Add missing documentation for conversionDecl; NFC.

Modified:
    cfe/trunk/docs/LibASTMatchersReference.html

Modified: cfe/trunk/docs/LibASTMatchersReference.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LibASTMatchersReference.html?rev=244669&r1=244668&r2=244669&view=diff
==============================================================================
--- cfe/trunk/docs/LibASTMatchersReference.html (original)
+++ cfe/trunk/docs/LibASTMatchersReference.html Tue Aug 11 16:12:46 2015
@@ -157,6 +157,18 @@ Example matches Foo::Foo() and Foo::Foo(
 </pre></td></tr>
 
 
+<tr><td>Matcher&lt<a href="http://clang.llvm.org/doxygen/classclang_1_1CXXConversionDecl.html">Decl</a>></td><td class="name" onclick="toggle('conversionDecl0')"><a name="conversionDecl0Anchor">conversionDecl</a></td><td>Matcher&lt<a href="http://clang.llvm.org/doxygen/classclang_1_1CXXConversionDecl.html">CXXConversionDecl</a>>...</td></tr>
+<tr><td colspan="4" class="doc" id="conversionDecl0"><pre>Matches C++ conversion declarations.
+
+Example matches Foo::operator int()
+  struct Foo {
+    Foo();
+    operator int();
+    int DoSomething();
+  };
+</pre></td></tr>
+
+
 <tr><td>Matcher&lt<a href="http://clang.llvm.org/doxygen/classclang_1_1Decl.html">Decl</a>></td><td class="name" onclick="toggle('decl0')"><a name="decl0Anchor">decl</a></td><td>Matcher&lt<a href="http://clang.llvm.org/doxygen/classclang_1_1Decl.html">Decl</a>>...</td></tr>
 <tr><td colspan="4" class="doc" id="decl0"><pre>Matches declarations.
 




More information about the cfe-commits mailing list