diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-11-24 03:55:01 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-11-24 03:55:01 +0000 |
commit | 50668455a72c9ec35b26d76d873b692ac9f21367 (patch) | |
tree | 9e8705a449dcbd69f41114594c49675b53707a24 /clang/docs/InternalsManual.rst | |
parent | 8583872060cd2157e0be2ebd4c34e71355facee5 (diff) | |
download | bcm5719-llvm-50668455a72c9ec35b26d76d873b692ac9f21367.tar.gz bcm5719-llvm-50668455a72c9ec35b26d76d873b692ac9f21367.zip |
Remove DataRecursiveASTVisitor; it no longer serves any purpose, since it's just an alias for RecursiveASTVisitor.
llvm-svn: 253949
Diffstat (limited to 'clang/docs/InternalsManual.rst')
-rw-r--r-- | clang/docs/InternalsManual.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/InternalsManual.rst b/clang/docs/InternalsManual.rst index 7959179d491..c4af5b112ac 100644 --- a/clang/docs/InternalsManual.rst +++ b/clang/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 |