aboutsummaryrefslogtreecommitdiff
path: root/tools/versioner/src/versioner.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/versioner/src/versioner.h')
-rw-r--r--tools/versioner/src/versioner.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/versioner/src/versioner.h b/tools/versioner/src/versioner.h
index 5e534989e..e9c4989e3 100644
--- a/tools/versioner/src/versioner.h
+++ b/tools/versioner/src/versioner.h
@@ -33,15 +33,11 @@ extern bool add_include;
} \
} while (0)
-static const std::unordered_map<std::string, std::set<Arch>> header_blacklist = {
+static const std::unordered_map<std::string, std::set<Arch>> ignored_headers = {
// Internal header.
+ // TODO: we should probably just admit we're never getting rid of this.
{ "sys/_system_properties.h", supported_archs },
// time64.h #errors when included on LP64 archs.
{ "time64.h", { Arch::arm64, Arch::x86_64 } },
};
-
-static const std::unordered_set<std::string> missing_symbol_whitelist = {
- // atexit comes from crtbegin.
- "atexit",
-};