aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/PCHWriter.h
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2009-10-16 21:56:05 +0000
committerJohn McCall <rjmccall@apple.com>2009-10-16 21:56:05 +0000
commita1ee0c548b8aa4aaf93d1917e304e3da13171a08 (patch)
tree5031f00facf8cb08e93b1ea715428b02593d2651 /include/clang/Frontend/PCHWriter.h
parentd9067b318604fddf960057fcb59145381c449d9e (diff)
Factor out routines to encode/decode DeclaratorInfos and move them into the
core PCH reader/writer implementation files. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84278 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/PCHWriter.h')
-rw-r--r--include/clang/Frontend/PCHWriter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Frontend/PCHWriter.h b/include/clang/Frontend/PCHWriter.h
index a807cd7c4d..5ff2f10180 100644
--- a/include/clang/Frontend/PCHWriter.h
+++ b/include/clang/Frontend/PCHWriter.h
@@ -254,6 +254,9 @@ public:
/// \brief Emit a reference to a type.
void AddTypeRef(QualType T, RecordData &Record);
+ /// \brief Emits a reference to a declarator info.
+ void AddDeclaratorInfo(DeclaratorInfo *DInfo, RecordData &Record);
+
/// \brief Emit a reference to a declaration.
void AddDeclRef(const Decl *D, RecordData &Record);