[PATCH] D100129: Tiny format fix

Nathan Sidwell via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 8 10:48:43 PDT 2021


urnathan created this revision.
urnathan added reviewers: rsmith, bruno.
urnathan requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

A mis-indented } in the middle of a function.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D100129

Files:
  clang/lib/Parse/ParseDeclCXX.cpp


Index: clang/lib/Parse/ParseDeclCXX.cpp
===================================================================
--- clang/lib/Parse/ParseDeclCXX.cpp
+++ clang/lib/Parse/ParseDeclCXX.cpp
@@ -132,7 +132,7 @@
           << FixItHint::CreateRemoval(InlineLoc);
     Decl *NSAlias = ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
     return Actions.ConvertDeclToDeclGroup(NSAlias);
-}
+  }
 
   BalancedDelimiterTracker T(*this, tok::l_brace);
   if (T.consumeOpen()) {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100129.336168.patch
Type: text/x-patch
Size: 476 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210408/68d289e5/attachment-0001.bin>


More information about the cfe-commits mailing list