summaryrefslogtreecommitdiffstats
path: root/docs/InternalsManual.rst
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2015-11-24 03:55:01 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2015-11-24 03:55:01 +0000
commite475fd3abeab4721255fa8b410a000f53915f040 (patch)
treeb643e3c371d36c563137f5ec81cc6fbc0acfbaff /docs/InternalsManual.rst
parent89d5b46c217bb7fd5d23e92def8f9a6edd57090a (diff)
Remove DataRecursiveASTVisitor; it no longer serves any purpose, since it's just an alias for RecursiveASTVisitor.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253949 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/InternalsManual.rst')
-rw-r--r--docs/InternalsManual.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/InternalsManual.rst b/docs/InternalsManual.rst
index 7959179d49..c4af5b112a 100644
--- a/docs/InternalsManual.rst
+++ b/docs/InternalsManual.rst
@@ -1995,7 +1995,7 @@ are similar.
* Make sure that ``children()`` visits all of the subexpressions. This is
important for a number of features (e.g., IDE support, C++ variadic
templates). If you have sub-types, you'll also need to visit those
- sub-types in ``RecursiveASTVisitor`` and ``DataRecursiveASTVisitor``.
+ sub-types in ``RecursiveASTVisitor``.
* Add printing support (``StmtPrinter.cpp``) for your expression.
* Add profiling support (``StmtProfile.cpp``) for your AST node, noting the
distinguishing (non-source location) characteristics of an instance of