================
@@ -207,10 +234,17 @@ bool Sema::CheckCountedByAttrOnField(FieldDecl *FD, Expr 
*E, bool CountInBytes,
     return true;
   }
 
+  // Reject if both FD and CountFD are in the same union - they share storage.
+  if (FD->getParent() == CountFD->getParent() && FD->getParent()->isUnion()) {
----------------
ojhunt wrote:

I was looking at this and thinking "this seems like a long line, is it correct" 
and I realised it would be nice if GH could be configured to show column 
rulers. Then I remembered just how absolutely atrocious GH performance is 
already :D

https://github.com/llvm/llvm-project/pull/171996
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to