Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 665796dd authored by Pirama Arumuga Nainar's avatar Pirama Arumuga Nainar Committed by Automerger Merge Worker
Browse files

Merge "Fix Wbitwise-instead-of-logical introduced by clang-r445002" am: 9f165ca3

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1961919

Change-Id: I2c4c1d618174fef1a08cca712e259878719c13c4
parents e9485a41 9f165ca3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ void ReportFile::addReport(const IncidentReportArgs& args) {
                // Lower privacy policy (less restrictive) wins.
                report->set_privacy_policy(args.getPrivacyPolicy());
            }
            report->set_all_sections(report->all_sections() | args.all());
            report->set_all_sections(report->all_sections() || args.all());
            for (int section: args.sections()) {
                if (!has_section(*report, section)) {
                    report->add_section(section);