Skip to content
Snippets Groups Projects
Commit 0ff4f8bf authored by Dmitri Gribenko's avatar Dmitri Gribenko
Browse files

Use static functions instead of an unnamed namespace

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174835 91177308-0d34-0410-b5e6-96231b3b80d8
parent 2afbe523
No related branches found
No related tags found
No related merge requests found
...@@ -15,21 +15,21 @@ void Token::dump(const Lexer &L, const SourceManager &SM) const { ...@@ -15,21 +15,21 @@ void Token::dump(const Lexer &L, const SourceManager &SM) const {
llvm::errs() << " " << Length << " \"" << L.getSpelling(*this, SM) << "\"\n"; llvm::errs() << " " << Length << " \"" << L.getSpelling(*this, SM) << "\"\n";
} }
namespace { static inline bool isHTMLNamedCharacterReferenceCharacter(char C) {
bool isHTMLNamedCharacterReferenceCharacter(char C) {
return isLetter(C); return isLetter(C);
} }
bool isHTMLDecimalCharacterReferenceCharacter(char C) { static inline bool isHTMLDecimalCharacterReferenceCharacter(char C) {
return isDigit(C); return isDigit(C);
} }
bool isHTMLHexCharacterReferenceCharacter(char C) { static inline bool isHTMLHexCharacterReferenceCharacter(char C) {
return isHexDigit(C); return isHexDigit(C);
} }
StringRef convertCodePointToUTF8(llvm::BumpPtrAllocator &Allocator, static inline StringRef convertCodePointToUTF8(
unsigned CodePoint) { llvm::BumpPtrAllocator &Allocator,
unsigned CodePoint) {
char *Resolved = Allocator.Allocate<char>(UNI_MAX_UTF8_BYTES_PER_CODE_POINT); char *Resolved = Allocator.Allocate<char>(UNI_MAX_UTF8_BYTES_PER_CODE_POINT);
char *ResolvedPtr = Resolved; char *ResolvedPtr = Resolved;
if (llvm::ConvertCodePointToUTF8(CodePoint, ResolvedPtr)) if (llvm::ConvertCodePointToUTF8(CodePoint, ResolvedPtr))
...@@ -38,6 +38,8 @@ StringRef convertCodePointToUTF8(llvm::BumpPtrAllocator &Allocator, ...@@ -38,6 +38,8 @@ StringRef convertCodePointToUTF8(llvm::BumpPtrAllocator &Allocator,
return StringRef(); return StringRef();
} }
namespace {
#include "clang/AST/CommentHTMLTags.inc" #include "clang/AST/CommentHTMLTags.inc"
#include "clang/AST/CommentHTMLNamedCharacterReferences.inc" #include "clang/AST/CommentHTMLNamedCharacterReferences.inc"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment