docs: Remove note about Identifiers being used for C++ operators
authorJustin Bogner <mail@justinbogner.com>
Fri, 27 Sep 2013 21:10:51 +0000 (21:10 +0000)
committerJustin Bogner <mail@justinbogner.com>
Fri, 27 Sep 2013 21:10:51 +0000 (21:10 +0000)
C++ operators are represented by CXXOperatorName now, which is already
documented.

llvm-svn: 191559

clang/docs/InternalsManual.rst

index 59dd2f9..2e130c3 100644 (file)
@@ -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``