diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-24 16:50:34 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-24 16:50:34 +0000 |
commit | bbf38319edd4eddc55ec273934e990d7e84991de (patch) | |
tree | 109fea0581e9c816e63481b65dc9d855cdb0fac7 /include/clang/Serialization/ASTBitCodes.h | |
parent | b0985c86f7f75e780bfeb366afdbee7676c28948 (diff) |
(De-)serialize header search options.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166586 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/ASTBitCodes.h')
-rw-r--r-- | include/clang/Serialization/ASTBitCodes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/Serialization/ASTBitCodes.h b/include/clang/Serialization/ASTBitCodes.h index 723404a996..9c28dc937f 100644 --- a/include/clang/Serialization/ASTBitCodes.h +++ b/include/clang/Serialization/ASTBitCodes.h @@ -267,7 +267,10 @@ namespace clang { DIAGNOSTIC_OPTIONS = 8, /// \brief Record code for the filesystem options table. - FILE_SYSTEM_OPTIONS = 9 + FILE_SYSTEM_OPTIONS = 9, + + /// \brief Record code for the headers search options table. + HEADER_SEARCH_OPTIONS = 10 }; /// \brief Record types that occur within the input-files block |