You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Sema] Use llvm::is_contained instead of llvm::all_of (NFC) (#158213)
The code in question uses llvm::all_of and llvm::identity to see if
every pointer is nonnull:
Ptr1 && Ptr2 && Ptr3 && ...
This patch simplifies the expression by checking for the absence of
nullptr with !llvm::is_contained.
0 commit comments