diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-28 19:45:26 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-28 19:45:26 +0000 |
commit | 85b4521e34dcd4a0a4a1f0819e1123128e5a3125 (patch) | |
tree | 75d0e0088525b7d40d91bdd79d18f65c630eabdb /lib/CodeGen/CGVtable.cpp | |
parent | 770b4a8834670e9427d3ce5a1a8472eb86f45fd2 (diff) |
Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | lib/CodeGen/CGVtable.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/CodeGen/CGVtable.cpp b/lib/CodeGen/CGVtable.cpp index a26a697250..eb8a1dbb4d 100644 --- a/lib/CodeGen/CGVtable.cpp +++ b/lib/CodeGen/CGVtable.cpp @@ -13,7 +13,6 @@ #include "CodeGenModule.h" #include "CodeGenFunction.h" - #include "clang/AST/CXXInheritance.h" #include "clang/AST/RecordLayout.h" #include "llvm/ADT/DenseSet.h" @@ -23,8 +22,7 @@ using namespace clang; using namespace CodeGen; namespace { - -class VISIBILITY_HIDDEN VtableBuilder { +class VtableBuilder { public: /// Index_t - Vtable index type. typedef uint64_t Index_t; |