[PATCH] D78233: [NFC] Correcting minor typo.

Nate Voorhies via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 15 12:37:10 PDT 2020


ncv created this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
ncv added a reviewer: xazax.hun.
Herald added a subscriber: rnkovacs.

Hande -> Handle


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D78233

Files:
  clang/lib/Sema/SemaDeclAttr.cpp


Index: clang/lib/Sema/SemaDeclAttr.cpp
===================================================================
--- clang/lib/Sema/SemaDeclAttr.cpp
+++ clang/lib/Sema/SemaDeclAttr.cpp
@@ -6681,7 +6681,7 @@
   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.
@@ -7362,7 +7362,7 @@
     break;
 
   case ParsedAttr::AT_AcquireHandle:
-    handeAcquireHandleAttr(S, D, AL);
+    handleAcquireHandleAttr(S, D, AL);
     break;
 
   case ParsedAttr::AT_ReleaseHandle:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D78233.257803.patch
Type: text/x-patch
Size: 731 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200415/d55549d3/attachment.bin>


More information about the cfe-commits mailing list