diff options
author | Anders Carlsson <andersca@mac.com> | 2011-01-24 02:04:33 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2011-01-24 02:04:33 +0000 |
commit | 68d3424b8c9083e1ecf0b4898e45d016cc31094a (patch) | |
tree | ba891dcc7a59577817688a7357daed90677db904 /clang/lib/CodeGen/CodeGenModule.h | |
parent | ba840fb73c77c3aae5603f59b4b09cddef60620e (diff) | |
download | llvm-68d3424b8c9083e1ecf0b4898e45d016cc31094a.zip llvm-68d3424b8c9083e1ecf0b4898e45d016cc31094a.tar.gz llvm-68d3424b8c9083e1ecf0b4898e45d016cc31094a.tar.bz2 |
Change CodeGenModule::getVTableLinkage to be a non-static member function.
llvm-svn: 124095
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 55674ba..f38c0bc 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -496,8 +496,7 @@ public: /// getVTableLinkage - Return the appropriate linkage for the vtable, VTT, /// and type information of the given class. - static llvm::GlobalVariable::LinkageTypes - getVTableLinkage(const CXXRecordDecl *RD); + llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD); /// GetTargetTypeStoreSize - Return the store size, in character units, of /// the given LLVM type. |