diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-24 22:19:42 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-02-24 22:19:42 +0000 |
commit | a08c2fb74ef823c185619ecc532f8fced6a1982f (patch) | |
tree | a32ca2b682f41fdb95f19292ca2ea9c3395fe70a /lib/Sema/SemaType.cpp | |
parent | 359c89df5479810c9d4784fc0b6ab592eb136777 (diff) |
Make helper static.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151400 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaType.cpp')
-rw-r--r-- | lib/Sema/SemaType.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp index d9867fd1b0..d7c54f7d0b 100644 --- a/lib/Sema/SemaType.cpp +++ b/lib/Sema/SemaType.cpp @@ -1938,7 +1938,7 @@ static QualType GetDeclSpecTypeForDeclarator(TypeProcessingState &state, return T; } -std::string getFunctionQualifiersAsString(const FunctionProtoType *FnTy) { +static std::string getFunctionQualifiersAsString(const FunctionProtoType *FnTy){ std::string Quals = Qualifiers::fromCVRMask(FnTy->getTypeQuals()).getAsString(); |