diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-09-15 19:54:06 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-09-15 19:54:06 +0000 |
commit | f73c93fea0d4b447585bc7459499ba6b822e045c (patch) | |
tree | db68bc48b32e69396b71338c5cd580ef9e6a57cf /include/clang/Serialization/ASTBitCodes.h | |
parent | 304b752a450c0fc5968c20ba25446d0bb7c6f68d (diff) |
Macro definitions in AST files have their own IDs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114014 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 3714b77f2b..8628d74ff1 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -112,10 +112,13 @@ namespace clang { typedef llvm::DenseMap<QualType, TypeIdx, UnsafeQualTypeDenseMapInfo> TypeIdxMap; - /// \brief An ID number that refers to an identifier in an AST - /// file. + /// \brief An ID number that refers to an identifier in an AST file. typedef uint32_t IdentID; + /// \brief An ID number that refers to a macro in an AST file. + typedef uint32_t MacroID; + + /// \brief An ID number that refers to an ObjC selctor in an AST file. typedef uint32_t SelectorID; /// \brief Describes the various kinds of blocks that occur within |