diff options
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; |