summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaDeclCXX.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2010-04-17 20:15:18 +0000
committerAnders Carlsson <andersca@mac.com>2010-04-17 20:15:18 +0000
commit11e5140db94dc3f27108f313135d0664d3ccd421 (patch)
treed7ffb9d37d80771f7433ea6e171b1d3bd5421bef /clang/lib/Sema/SemaDeclCXX.cpp
parent13bca6cd5a6b5e989a469ec1687b42a5c7008895 (diff)
downloadbcm5719-llvm-11e5140db94dc3f27108f313135d0664d3ccd421.tar.gz
bcm5719-llvm-11e5140db94dc3f27108f313135d0664d3ccd421.zip
Vtable -> VTable renames across the board.
llvm-svn: 101666
Diffstat (limited to 'clang/lib/Sema/SemaDeclCXX.cpp')
-rw-r--r--clang/lib/Sema/SemaDeclCXX.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp
index 4ce428465a0..c6fd53ca613 100644
--- a/clang/lib/Sema/SemaDeclCXX.cpp
+++ b/clang/lib/Sema/SemaDeclCXX.cpp
@@ -5432,7 +5432,7 @@ Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) {
return Dcl;
}
-static bool needsVtable(CXXMethodDecl *MD, ASTContext &Context) {
+static bool needsVTable(CXXMethodDecl *MD, ASTContext &Context) {
// Ignore dependent types.
if (MD->isDependentContext())
return false;
@@ -5495,7 +5495,7 @@ void Sema::MaybeMarkVirtualMembersReferenced(SourceLocation Loc,
// We will need to mark all of the virtual members as referenced to build the
// vtable.
- if (!needsVtable(MD, Context))
+ if (!needsVTable(MD, Context))
return;
TemplateSpecializationKind kind = RD->getTemplateSpecializationKind();
OpenPOWER on IntegriCloud