forked from OSchip/llvm-project
[NFC][clang-tidy] Put abseil headers in alphabetical order
This commit is contained in:
parent
abd33bf5ef
commit
8c9ffe34d9
|
@ -47,14 +47,18 @@ AST_POLYMORPHIC_MATCHER(
|
|||
if (PrefixPosition == StringRef::npos)
|
||||
return false;
|
||||
Path = Path.drop_front(PrefixPosition + AbslPrefix.size());
|
||||
static const char *AbseilLibraries[] = {
|
||||
"algorithm", "base", "container", "debugging", "flags",
|
||||
"hash", "iterator", "memory", "meta", "numeric",
|
||||
"random", "strings", "synchronization", "status", "time",
|
||||
"types", "utility"};
|
||||
return std::any_of(
|
||||
std::begin(AbseilLibraries), std::end(AbseilLibraries),
|
||||
[&](const char *Library) { return Path.startswith(Library); });
|
||||
static const char *AbseilLibraries[] = {"algorithm", "base",
|
||||
"container", "debugging",
|
||||
"flags", "hash",
|
||||
"iterator", "memory",
|
||||
"meta", "numeric",
|
||||
"random", "status",
|
||||
"strings", "synchronization",
|
||||
"time", "types",
|
||||
"utility"};
|
||||
return llvm::any_of(AbseilLibraries, [&](const char *Library) {
|
||||
return Path.startswith(Library);
|
||||
});
|
||||
}
|
||||
|
||||
} // namespace ast_matchers
|
||||
|
|
Loading…
Reference in New Issue