]> granicus.if.org Git - clang/commitdiff
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.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191559 91177308-0d34-0410-b5e6-96231b3b80d8

docs/InternalsManual.rst

index 59dd2f98d6d6ebaf2cc43570bf87d58e3a6cbeed..2e130c30c4680727391c2d1a522b6f15ff8c3c65 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``