forked from OSchip/llvm-project
[NFC] Correcting minor typo.
Summary: Hande -> Handle Reviewers: xazax.hun Reviewed By: xazax.hun Subscribers: rnkovacs, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D78233
This commit is contained in:
parent
30853cd689
commit
0b21f15e14
|
@ -6692,7 +6692,7 @@ static void handleMSAllocatorAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
|
|||
handleSimpleAttribute<MSAllocatorAttr>(S, D, AL);
|
||||
}
|
||||
|
||||
static void handeAcquireHandleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
|
||||
static void handleAcquireHandleAttr(Sema &S, Decl *D, const ParsedAttr &AL) {
|
||||
if (AL.isUsedAsTypeAttr())
|
||||
return;
|
||||
// Warn if the parameter is definitely not an output parameter.
|
||||
|
@ -7373,7 +7373,7 @@ static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D,
|
|||
break;
|
||||
|
||||
case ParsedAttr::AT_AcquireHandle:
|
||||
handeAcquireHandleAttr(S, D, AL);
|
||||
handleAcquireHandleAttr(S, D, AL);
|
||||
break;
|
||||
|
||||
case ParsedAttr::AT_ReleaseHandle:
|
||||
|
|
Loading…
Reference in New Issue