aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/DeclBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/AST/DeclBase.h')
-rw-r--r--include/clang/AST/DeclBase.h7
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