diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-17 22:24:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-17 22:24:01 +0000 |
commit | f568f8c8896471cf055dc19a8246c41d6e7dd770 (patch) | |
tree | c62beb92c6a34e6f7a97cf3cbe5734ee40d15ab0 /clang/lib/Driver/HostInfo.cpp | |
parent | 15abb2ee0e21fdbe097f3b205f4ded0a6444deae (diff) | |
download | bcm5719-llvm-f568f8c8896471cf055dc19a8246c41d6e7dd770.tar.gz bcm5719-llvm-f568f8c8896471cf055dc19a8246c41d6e7dd770.zip |
GCC 4.0 isn't happy with VISIBILITY_HIDDEN on a namespace.
llvm-svn: 67112
Diffstat (limited to 'clang/lib/Driver/HostInfo.cpp')
-rw-r--r-- | clang/lib/Driver/HostInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/HostInfo.cpp b/clang/lib/Driver/HostInfo.cpp index b98318dd26b..5fb9f9929ec 100644 --- a/clang/lib/Driver/HostInfo.cpp +++ b/clang/lib/Driver/HostInfo.cpp @@ -33,7 +33,7 @@ HostInfo::HostInfo(const Driver &D, const char *_Arch, const char *_Platform, HostInfo::~HostInfo() { } -namespace VISIBILITY_HIDDEN { +namespace { // Darwin Host Info |