From 0b21f15e141737e421845b4a1993c7521af86ae6 Mon Sep 17 00:00:00 2001 From: Nate Voorhies Date: Wed, 15 Apr 2020 12:28:06 -0700 Subject: [PATCH] [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 --- clang/lib/Sema/SemaDeclAttr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/lib/Sema/SemaDeclAttr.cpp b/clang/lib/Sema/SemaDeclAttr.cpp index 5275afa..1a8a736 100644 --- a/clang/lib/Sema/SemaDeclAttr.cpp +++ b/clang/lib/Sema/SemaDeclAttr.cpp @@ -6692,7 +6692,7 @@ static void handleMSAllocatorAttr(Sema &S, Decl *D, const ParsedAttr &AL) { handleSimpleAttribute(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: -- 2.7.4