[clang] 5d49276 - [clangd][clang-tidy][stdlib] Add a missing symbol to the mapping.
Viktoriia Bakalova via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 4 07:15:16 PDT 2023
Author: Viktoriia Bakalova
Date: 2023-08-04T14:15:01Z
New Revision: 5d492766a8fbfadb39c9830ebb64137edddfe0e5
URL: https://github.com/llvm/llvm-project/commit/5d492766a8fbfadb39c9830ebb64137edddfe0e5
DIFF: https://github.com/llvm/llvm-project/commit/5d492766a8fbfadb39c9830ebb64137edddfe0e5.diff
LOG: [clangd][clang-tidy][stdlib] Add a missing symbol to the mapping.
Differential Revision: https://reviews.llvm.org/D157093
Added:
Modified:
clang/lib/Tooling/Inclusions/Stdlib/StdSpecialSymbolMap.inc
Removed:
################################################################################
diff --git a/clang/lib/Tooling/Inclusions/Stdlib/StdSpecialSymbolMap.inc b/clang/lib/Tooling/Inclusions/Stdlib/StdSpecialSymbolMap.inc
index ae620a0b995816..aa0bc50445f473 100644
--- a/clang/lib/Tooling/Inclusions/Stdlib/StdSpecialSymbolMap.inc
+++ b/clang/lib/Tooling/Inclusions/Stdlib/StdSpecialSymbolMap.inc
@@ -360,6 +360,10 @@ SYMBOL(index_sequence_for, std::, <utility>)
SYMBOL(make_index_sequence, std::, <utility>)
SYMBOL(make_integer_sequence, std::, <utility>)
+// Symbols missing from the generated symbol map as reported by users.
+// Remove when the generator starts producing them.
+SYMBOL(make_any, std::, <any>)
+
// The std::placeholder symbols (_1, ..., _N) are listed in the cppreference
// placeholder.html, but the index only contains a single entry with "_1, _2, ..., _N"
// text, which are not handled by the script.
More information about the cfe-commits
mailing list