Index: clang-tools-extra/clang-tidy/abseil/AbseilMatcher.h =================================================================== --- clang-tools-extra/clang-tidy/abseil/AbseilMatcher.h +++ clang-tools-extra/clang-tidy/abseil/AbseilMatcher.h @@ -48,10 +48,11 @@ return false; Path = Path.drop_front(PrefixPosition + AbslPrefix.size()); static const char *AbseilLibraries[] = { - "algorithm", "base", "container", "debugging", "flags", - "hash", "iterator", "memory", "meta", "numeric", - "profiling", "random", "status", "strings", "synchronization", - "time", "types", "utility"}; + "algorithm", "base", "cleanup", "container", "crc", + "debugging", "flags", "functional", "google", "hash", + "iterator", "log", "memory", "meta", "numeric", + "profiling", "python", "random", "status", "strings", + "synchronization", "time", "types", "utility"}; return llvm::any_of(AbseilLibraries, [&](const char *Library) { return Path.startswith(Library); });