diff options
author | Mike Stump <mrs@apple.com> | 2009-07-28 19:31:47 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-28 19:31:47 +0000 |
commit | 8fad9941a635a42ee644e7396ca84cbaaa5c1b6e (patch) | |
tree | 23678a4d0ceff8e6116886474984488af0ad67a5 | |
parent | bb977228e642e0d12365862a3838dd5005ef783b (diff) |
Update comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77355 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ASTContext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index c7faefc17f..0b5d337a07 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -130,10 +130,10 @@ class ASTContext { /// \brief The type for the C FILE type. TypeDecl *FILEDecl; - /// \brief The type for the C FILE type. + /// \brief The type for the C jmp_buf type. TypeDecl *jmp_bufDecl; - /// \brief The type for the C FILE type. + /// \brief The type for the C sigjmp_buf type. TypeDecl *sigjmp_bufDecl; /// \brief Keeps track of all declaration attributes. |