Fixes #28334 --- This PR introduces the `-Wshift-bool` warning to detect and warn against shifting `bool` values using the `>>` operator. Shifting a `bool` implicitly converts it to an `int`, which can lead to unintended behavior.
SubFrameworks