[NFC] Add missing 'break' in a switch case
authorErich Keane <erich.keane@intel.com>
Tue, 10 May 2022 19:48:01 +0000 (12:48 -0700)
committerErich Keane <erich.keane@intel.com>
Tue, 10 May 2022 19:48:08 +0000 (12:48 -0700)
clang/lib/AST/TypePrinter.cpp

index d2feb1c..43183e1 100644 (file)
@@ -283,6 +283,7 @@ bool TypePrinter::canPrefixQualifiers(const Type *T,
       // address_space attribute.
       const auto *AttrTy = cast<AttributedType>(UnderlyingType);
       CanPrefixQualifiers = AttrTy->getAttrKind() == attr::AddressSpace;
+      break;
     }
   }