diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-24 01:49:04 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-24 01:49:04 +0000 |
commit | 5fe61c695270bbe924d9d49b5a869ceb102590fd (patch) | |
tree | 18ca7b46ad557e0cdd3a7385f08d7b0370aa38cb | |
parent | 320c1f8806c64163ff51c2d075d289ff7699feb0 (diff) | |
download | bcm5719-llvm-5fe61c695270bbe924d9d49b5a869ceb102590fd.tar.gz bcm5719-llvm-5fe61c695270bbe924d9d49b5a869ceb102590fd.zip |
clang/AST/VTTBuilder.h: Prune one description in three methods, VTTBuilder::AddVTablePointer(), VTTBuilder::LayoutSecondaryVirtualPointers(), and VTTBuilder::LayoutSecondaryVirtualPointers(). [-Wdocumentation]
/// \param AddressPoints - If the vtable is a construction vtable, this has the address points for it.
llvm-svn: 171014
-rw-r--r-- | clang/include/clang/AST/VTTBuilder.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/clang/include/clang/AST/VTTBuilder.h b/clang/include/clang/AST/VTTBuilder.h index 6756dd1e993..f24bb3f16b8 100644 --- a/clang/include/clang/AST/VTTBuilder.h +++ b/clang/include/clang/AST/VTTBuilder.h @@ -102,9 +102,6 @@ class VTTBuilder { bool GenerateDefinition; /// AddVTablePointer - Add a vtable pointer to the VTT currently being built. - /// - /// \param AddressPoints - If the vtable is a construction vtable, this has - /// the address points for it. void AddVTablePointer(BaseSubobject Base, uint64_t VTableIndex, const CXXRecordDecl *VTableClass); @@ -117,9 +114,6 @@ class VTTBuilder { /// /// \param BaseIsMorallyVirtual whether the base subobject is a virtual base /// or a direct or indirect base of a virtual base. - /// - /// \param AddressPoints - If the vtable is a construction vtable, this has - /// the address points for it. void LayoutSecondaryVirtualPointers(BaseSubobject Base, bool BaseIsMorallyVirtual, uint64_t VTableIndex, @@ -128,9 +122,6 @@ class VTTBuilder { /// LayoutSecondaryVirtualPointers - Lay out the secondary virtual pointers /// for the given base subobject. - /// - /// \param AddressPoints - If the vtable is a construction vtable, this has - /// the address points for it. void LayoutSecondaryVirtualPointers(BaseSubobject Base, uint64_t VTableIndex); |