summaryrefslogtreecommitdiffstats
path: root/docs/InternalsManual.rst
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2013-09-27 21:10:51 +0000
committerJustin Bogner <mail@justinbogner.com>2013-09-27 21:10:51 +0000
commit4e60b9c41fc5c31bee414ffacd66baf23102f6d8 (patch)
tree43bcf0c4ff1370f1bac350cac0aff54342a43432 /docs/InternalsManual.rst
parent5cf3e358590939802f2e24075ed1c6088790f2be (diff)
docs: Remove note about Identifiers being used for C++ operators
C++ operators are represented by CXXOperatorName now, which is already documented. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191559 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/InternalsManual.rst')
-rw-r--r--docs/InternalsManual.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/InternalsManual.rst b/docs/InternalsManual.rst
index 59dd2f98d6..2e130c30c4 100644
--- a/docs/InternalsManual.rst
+++ b/docs/InternalsManual.rst
@@ -957,10 +957,6 @@ names are inside the ``DeclarationName`` class).
The name is a simple identifier. Use ``N.getAsIdentifierInfo()`` to retrieve
the corresponding ``IdentifierInfo*`` pointing to the actual identifier.
- Note that C++ overloaded operators (e.g., "``operator+``") are represented as
- special kinds of identifiers. Use ``IdentifierInfo``'s
- ``getOverloadedOperatorID`` function to determine whether an identifier is an
- overloaded operator name.
``ObjCZeroArgSelector``, ``ObjCOneArgSelector``, ``ObjCMultiArgSelector``