diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-18 23:56:27 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-18 23:56:27 +0000 |
commit | 3397c5570369f19b2d6c52e898f708d75ceede1f (patch) | |
tree | 7950e9a453c4e46be42c54600c8ac7a10a663959 /include/clang/AST/DeclBase.h | |
parent | a4232eb646d89e7d52424bb42eb87d9061f39e63 (diff) |
Do the PCH->AST rename for ASTWriter's implementation parts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/DeclBase.h')
-rw-r--r-- | include/clang/AST/DeclBase.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/clang/AST/DeclBase.h b/include/clang/AST/DeclBase.h index a362765a7f..83270ab727 100644 --- a/include/clang/AST/DeclBase.h +++ b/include/clang/AST/DeclBase.h @@ -223,8 +223,7 @@ protected: unsigned Access : 2; friend class CXXClassMemberWrapper; - /// PCHLevel - the "level" of precompiled header/AST file from which this - /// declaration was built. + /// PCHLevel - the "level" of AST file from which this declaration was built. unsigned PCHLevel : 2; /// PCHChanged - if this declaration has changed since being deserialized @@ -398,10 +397,10 @@ public: } /// \brief Query whether this declaration was changed in a significant way - /// since being loaded from a PCH file. + /// since being loaded from an AST file. /// /// In an epic violation of layering, what is "significant" is entirely - /// up to the PCH system, but implemented in AST and Sema. + /// up to the serialization system, but implemented in AST and Sema. bool isChangedSinceDeserialization() const { return PCHChanged; } /// \brief Mark this declaration as having changed since deserialization, or |