summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/MallocChecker.cpp
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-11-28 06:07:30 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-11-28 06:07:30 +0000
commit65c6566b5b565b33585d53b1a3c36e36a42e12e4 (patch)
tree65f7d785d754ccb54ea6622203a42ecc26e47059 /clang/lib/Analysis/MallocChecker.cpp
parent344585006c128b7e89f524d4cd150ef1dd70978c (diff)
downloadbcm5719-llvm-65c6566b5b565b33585d53b1a3c36e36a42e12e4.tar.gz
bcm5719-llvm-65c6566b5b565b33585d53b1a3c36e36a42e12e4.zip
lib/Analysis: Remove VISIBILITY_HIDDEN from definitions in anonymous namespace
llvm-svn: 90028
Diffstat (limited to 'clang/lib/Analysis/MallocChecker.cpp')
-rw-r--r--clang/lib/Analysis/MallocChecker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Analysis/MallocChecker.cpp b/clang/lib/Analysis/MallocChecker.cpp
index a16125df77e..204c7b320e6 100644
--- a/clang/lib/Analysis/MallocChecker.cpp
+++ b/clang/lib/Analysis/MallocChecker.cpp
@@ -46,9 +46,9 @@ struct RefState {
}
};
-class VISIBILITY_HIDDEN RegionState {};
+class RegionState {};
-class VISIBILITY_HIDDEN MallocChecker : public CheckerVisitor<MallocChecker> {
+class MallocChecker : public CheckerVisitor<MallocChecker> {
BuiltinBug *BT_DoubleFree;
BuiltinBug *BT_Leak;
IdentifierInfo *II_malloc;
@@ -65,7 +65,7 @@ private:
void MallocMem(CheckerContext &C, const CallExpr *CE);
void FreeMem(CheckerContext &C, const CallExpr *CE);
};
-}
+} // end anonymous namespace
namespace clang {
template <>
OpenPOWER on IntegriCloud