aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra
diff options
context:
space:
mode:
authorNour1248 <121687016+Nour1248@users.noreply.github.com>2024-01-10 01:58:38 +0200
committerGitHub <noreply@github.com>2024-01-09 18:58:38 -0500
commitfeb49bb42433c55a206489d4c8dafd940c019e30 (patch)
treea88fa4f6e8c3eb7150561569e5729ffe9878bdec /clang-tools-extra
parent5f71aa9270c3d680babfbc6e766773d113c2a79a (diff)
downloadllvm-feb49bb42433c55a206489d4c8dafd940c019e30.zip
llvm-feb49bb42433c55a206489d4c8dafd940c019e30.tar.gz
llvm-feb49bb42433c55a206489d4c8dafd940c019e30.tar.bz2
[clangd] Fix typo in function name in AST.cpp (#77504)
Diffstat (limited to 'clang-tools-extra')
-rw-r--r--clang-tools-extra/clangd/AST.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/clang-tools-extra/clangd/AST.cpp b/clang-tools-extra/clangd/AST.cpp
index ae79eb2..3e374cf 100644
--- a/clang-tools-extra/clangd/AST.cpp
+++ b/clang-tools-extra/clangd/AST.cpp
@@ -757,7 +757,7 @@ const TemplateTypeParmType *getFunctionPackType(const FunctionDecl *Callee) {
// Returns the template parameter pack type that this parameter was expanded
// from (if in the Args... or Args&... or Args&&... form), if this is the case,
// nullptr otherwise.
-const TemplateTypeParmType *getUnderylingPackType(const ParmVarDecl *Param) {
+const TemplateTypeParmType *getUnderlyingPackType(const ParmVarDecl *Param) {
const auto *PlainType = Param->getType().getTypePtr();
if (auto *RT = dyn_cast<ReferenceType>(PlainType))
PlainType = RT->getPointeeTypeAsWritten().getTypePtr();
@@ -793,8 +793,8 @@ class ForwardingCallVisitor
: public RecursiveASTVisitor<ForwardingCallVisitor> {
public:
ForwardingCallVisitor(ArrayRef<const ParmVarDecl *> Parameters)
- : Parameters{Parameters}, PackType{getUnderylingPackType(
- Parameters.front())} {}
+ : Parameters{Parameters},
+ PackType{getUnderlyingPackType(Parameters.front())} {}
bool VisitCallExpr(CallExpr *E) {
auto *Callee = getCalleeDeclOrUniqueOverload(E);
@@ -859,7 +859,7 @@ private:
if (const auto *TTPT = getFunctionPackType(Callee)) {
// In this case: Separate the parameters into head, pack and tail
auto IsExpandedPack = [&](const ParmVarDecl *P) {
- return getUnderylingPackType(P) == TTPT;
+ return getUnderlyingPackType(P) == TTPT;
};
ForwardingInfo FI;
FI.Head = MatchingParams.take_until(IsExpandedPack);
@@ -964,7 +964,7 @@ resolveForwardingParameters(const FunctionDecl *D, unsigned MaxDepth) {
if (const auto *TTPT = getFunctionPackType(D)) {
// Split the parameters into head, pack and tail
auto IsExpandedPack = [TTPT](const ParmVarDecl *P) {
- return getUnderylingPackType(P) == TTPT;
+ return getUnderlyingPackType(P) == TTPT;
};
ArrayRef<const ParmVarDecl *> Head = Parameters.take_until(IsExpandedPack);
ArrayRef<const ParmVarDecl *> Pack =
@@ -1016,7 +1016,7 @@ resolveForwardingParameters(const FunctionDecl *D, unsigned MaxDepth) {
}
bool isExpandedFromParameterPack(const ParmVarDecl *D) {
- return getUnderylingPackType(D) != nullptr;
+ return getUnderlyingPackType(D) != nullptr;
}
} // namespace clangd