diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-11-25 18:29:30 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-11-25 18:29:30 +0000 |
commit | 54353f48939327a4aa41ea3f3ec07b936bd02ef5 (patch) | |
tree | 1e37de4d667005a5a81b9f3fa5643b4089c7b188 /lib/CodeGen/Mangle.cpp | |
parent | f564289d3b117f2d268ca34e1e3b7d98857e1978 (diff) |
Hide a bunch of symbols.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Mangle.cpp')
-rw-r--r-- | lib/CodeGen/Mangle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp index b240103639..e9c51e8479 100644 --- a/lib/CodeGen/Mangle.cpp +++ b/lib/CodeGen/Mangle.cpp @@ -2291,8 +2291,8 @@ static bool isCharSpecialization(QualType T, const char *Name) { } template <std::size_t StrLen> -bool isStreamCharSpecialization(const ClassTemplateSpecializationDecl *SD, - const char (&Str)[StrLen]) { +static bool isStreamCharSpecialization(const ClassTemplateSpecializationDecl*SD, + const char (&Str)[StrLen]) { if (!SD->getIdentifier()->isStr(Str)) return false; |