diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-09-26 18:36:39 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-09-26 18:36:39 +0000 |
commit | 8398fd8b5e01ca7c51c5dba609374c8b91ffa153 (patch) | |
tree | a8612b50999c0a3b596e58416a1edfd6b52d6722 | |
parent | 81c0b5c2006590ee983807b609369e761fa74b5e (diff) | |
download | llvm-8398fd8b5e01ca7c51c5dba609374c8b91ffa153.zip llvm-8398fd8b5e01ca7c51c5dba609374c8b91ffa153.tar.gz llvm-8398fd8b5e01ca7c51c5dba609374c8b91ffa153.tar.bz2 |
Add a small note to BaseSubobject about where it is actually used.
llvm-svn: 140543
-rw-r--r-- | clang/include/clang/AST/BaseSubobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/AST/BaseSubobject.h b/clang/include/clang/AST/BaseSubobject.h index 09ea412..6a036bb 100644 --- a/clang/include/clang/AST/BaseSubobject.h +++ b/clang/include/clang/AST/BaseSubobject.h @@ -24,7 +24,7 @@ namespace clang { // BaseSubobject - Uniquely identifies a direct or indirect base class. // Stores both the base class decl and the offset from the most derived class to -// the base class. +// the base class. Used for vtable and VTT generation. class BaseSubobject { /// Base - The base class declaration. const CXXRecordDecl *Base; |